Browse Source

Carry the interpreted value of the encoding through the error.

master
Sean Bowe 7 years ago
parent
commit
1027dda432
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
  1. 2
      src/bls12_381/fq.rs
  2. 2
      src/bls12_381/fr.rs
  3. 10
      src/lib.rs

2
src/bls12_381/fq.rs

@ -408,7 +408,7 @@ impl PrimeField for Fq {
Ok(r)
} else {
Err(PrimeFieldDecodingError::NotInField)
Err(PrimeFieldDecodingError::NotInField(format!("{:?}", r.0)))
}
}

2
src/bls12_381/fr.rs

@ -229,7 +229,7 @@ impl PrimeField for Fr {
Ok(r)
} else {
Err(PrimeFieldDecodingError::NotInField)
Err(PrimeFieldDecodingError::NotInField(format!("{:?}", r.0)))
}
}

10
src/lib.rs

@ -365,20 +365,24 @@ pub trait PrimeFieldRepr: Sized +
#[derive(Debug)]
pub enum PrimeFieldDecodingError {
// The encoded value is not in the field
NotInField
NotInField(String)
}
impl Error for PrimeFieldDecodingError {
fn description(&self) -> &str {
match self {
&PrimeFieldDecodingError::NotInField => "not an element in the field"
&PrimeFieldDecodingError::NotInField(..) => "not an element of the field"
}
}
}
impl fmt::Display for PrimeFieldDecodingError {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(f, "{}", self.description())
match self {
&PrimeFieldDecodingError::NotInField(ref repr) => {
write!(f, "{} is not an element of the field", repr)
}
}
}
}

Loading…
Cancel
Save