We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33661ea commit c841696Copy full SHA for c841696
src/ecdh.rs
@@ -50,7 +50,7 @@ pub struct SharedSecret {
50
}
51
impl_raw_debug!(SharedSecret);
52
53
-// This implementes `From<N>` for all `[u8; N]` arrays from 128bits(16 byte) to 2048bits allowing known hash lengths.
+// This implements `From<N>` for all `[u8; N]` arrays from 128bits(16 byte) to 2048bits allowing known hash lengths.
54
// Lower than 128 bits isn't resistant to collisions any more.
55
impl_from_array_len!(SharedSecret, BUF_SIZE, (16 20 28 32 48 64 96 128 256)); // BUF_SIZE == 256
56
0 commit comments