Skip to content

Commit

Permalink
Merge pull request #22 from poanetwork/afck-fmt
Browse files Browse the repository at this point in the history
Use Formatter debug helpers. Hide SecretKeyShares.
  • Loading branch information
vkomenda authored Sep 3, 2018
2 parents a7cd6e0 + a03d258 commit 76ac2a5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
18 changes: 10 additions & 8 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ impl fmt::Debug for PublicKey {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let uncomp = self.0.into_affine().into_uncompressed();
let bytes = uncomp.as_ref();
write!(f, "PublicKey({:?})", HexBytes(bytes))
f.debug_tuple("PublicKey").field(&HexBytes(bytes)).finish()
}
}

Expand Down Expand Up @@ -171,7 +171,9 @@ impl fmt::Debug for PublicKeyShare {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let uncomp = (self.0).0.into_affine().into_uncompressed();
let bytes = uncomp.as_ref();
write!(f, "PublicKeyShare({:?})", HexBytes(bytes))
f.debug_tuple("PublicKeyShare")
.field(&HexBytes(bytes))
.finish()
}
}

Expand Down Expand Up @@ -208,7 +210,7 @@ impl fmt::Debug for Signature {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let uncomp = self.0.into_affine().into_uncompressed();
let bytes = uncomp.as_ref();
write!(f, "Signature({:?})", HexBytes(bytes))
f.debug_tuple("Signature").field(&HexBytes(bytes)).finish()
}
}

Expand Down Expand Up @@ -238,7 +240,9 @@ impl fmt::Debug for SignatureShare {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let uncomp = (self.0).0.into_affine().into_uncompressed();
let bytes = uncomp.as_ref();
write!(f, "SignatureShare({:?})", HexBytes(bytes))
f.debug_tuple("SignatureShare")
.field(&HexBytes(bytes))
.finish()
}
}

Expand Down Expand Up @@ -313,7 +317,7 @@ impl Drop for SecretKey {
/// A debug statement where the secret prime field element is redacted.
impl fmt::Debug for SecretKey {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "SecretKey(...)")
f.debug_tuple("SecretKey").field(&"...").finish()
}
}

Expand Down Expand Up @@ -445,9 +449,7 @@ pub struct SecretKeyShare(SecretKey);

impl fmt::Debug for SecretKeyShare {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let uncomp = self.0.public_key().0.into_affine().into_uncompressed();
let bytes = uncomp.as_ref();
write!(f, "SecretKeyShare({:?})", HexBytes(bytes))
f.debug_tuple("SecretKeyShare").field(&"...").finish()
}
}

Expand Down
7 changes: 5 additions & 2 deletions src/poly.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ impl Clone for Poly {
/// A debug statement where the `coeff` vector of prime field elements has been redacted.
impl Debug for Poly {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "Poly {{ coeff: ... }}")
f.debug_struct("Poly").field("coeff", &"...").finish()
}
}

Expand Down Expand Up @@ -689,7 +689,10 @@ impl Drop for BivarPoly {
/// A debug statement where the `coeff` vector has been redacted.
impl Debug for BivarPoly {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
write!(f, "BivarPoly {{ degree: {}, coeff: ... }}", self.degree)
f.debug_struct("BivarPoly")
.field("degree", &self.degree)
.field("coeff", &"...")
.finish()
}
}

Expand Down

0 comments on commit 76ac2a5

Please sign in to comment.