File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
crates/bitwarden-crypto/src Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -71,8 +71,10 @@ fn derive_fingerprint(fingerprint_parts: Vec<Vec<u8>>) -> PublicKeyFingerprint {
71
71
/// concatenation of the bytes, and thus may lead to the same hash for different (N,E) pairs.
72
72
///
73
73
/// This function hashes each input separately, concatenates the hashes, and then hashes the result.
74
+ ///
74
75
/// Assumption: H is a cryptographic hash function, with respect to:
75
76
/// - Second pre-image resistance
77
+ ///
76
78
/// Assumption: H's output has a constant length output HS
77
79
///
78
80
/// Specifically, the construction is:
Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ mod claims;
4
4
pub use claims:: SignedPublicKeyOwnershipClaim ;
5
5
mod namespace;
6
6
pub use namespace:: SigningNamespace ;
7
- mod signing ;
8
- pub use signing :: * ;
7
+ mod sign ;
8
+ pub use sign :: * ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments