Skip to content

Commit

Permalink
Fix minor whtespace issue in ring::poly1305.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Dec 4, 2016
1 parent 9c48592 commit e6f5cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poly1305.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl SigningContext {
let (key, nonce) = key.bytes.split_at(16);
let key = slice_as_array_ref!(key, 16).unwrap();

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

0 comments on commit e6f5cc1

Please sign in to comment.