Skip to content

Commit e6f5cc1

Browse files
committed
Fix minor whtespace issue in ring::poly1305.
1 parent 9c48592 commit e6f5cc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/poly1305.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ impl SigningContext {
5454
let (key, nonce) = key.bytes.split_at(16);
5555
let key = slice_as_array_ref!(key, 16).unwrap();
5656

57-
let mut ctx = SigningContext{
57+
let mut ctx = SigningContext {
5858
opaque: [0u8; OPAQUE_LEN],
5959
// TODO: When we can get explicit alignment, make `nonce` an
6060
// aligned `u8[16]` and get rid of this `u8[16]` -> `u32[4]`

0 commit comments

Comments
 (0)