We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ring::poly1305
1 parent 9c48592 commit e6f5cc1Copy full SHA for e6f5cc1
src/poly1305.rs
@@ -54,7 +54,7 @@ impl SigningContext {
54
let (key, nonce) = key.bytes.split_at(16);
55
let key = slice_as_array_ref!(key, 16).unwrap();
56
57
- let mut ctx = SigningContext{
+ let mut ctx = SigningContext {
58
opaque: [0u8; OPAQUE_LEN],
59
// TODO: When we can get explicit alignment, make `nonce` an
60
// aligned `u8[16]` and get rid of this `u8[16]` -> `u32[4]`
0 commit comments