Skip to content

Commit 371ec9b

Browse files
committed
Test secret hash truncation
When using `hashes` to hash a secret and print it in `Debug` we truncate the hash into an 8 byte identifier, test it.
1 parent fea0fc2 commit 371ec9b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

src/key.rs

+25
Original file line numberDiff line numberDiff line change
@@ -1718,6 +1718,31 @@ mod test {
17181718
"0100000000000000020000000000000003000000000000000400000000000000"
17191719
);
17201720
}
1721+
#[test]
1722+
fn test_display_obfuscation() {
1723+
#[rustfmt::skip]
1724+
static SK_BYTES: [u8; 32] = [
1725+
0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01,
1726+
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
1727+
0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
1728+
0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63, 0x63,
1729+
];
1730+
1731+
let sk = SecretKey::from_slice(&SK_BYTES).expect("sk");
1732+
1733+
#[cfg(feature = "std")]
1734+
{
1735+
let got = format!("{:?}", sk);
1736+
let want = "SecretKey(#2f4d520bd6874292)";
1737+
assert_eq!(got, want);
1738+
}
1739+
#[cfg(all(not(feature = "std"), feature = "hashes"))]
1740+
{
1741+
let got = format!("{:?}", sk);
1742+
let want = "SecretKey(#de5a451f70110720)";
1743+
assert_eq!(got, want);
1744+
}
1745+
}
17211746

17221747
#[test]
17231748
#[cfg(feature = "alloc")]

0 commit comments

Comments
 (0)