Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed Feb 27, 2024
1 parent b1f0109 commit 0ba5fa1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/blake2b/blake2b_soft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,7 @@ mod tests {
} else {
Some(hex::decode(&vector.key).unwrap())
};
let mut state =
State::init(64, key.as_deref(), None, None).expect("init");
let mut state = State::init(64, key.as_deref(), None, None).expect("init");
state.update(hex::decode(&vector.in_).unwrap().as_slice());
let mut output = [0u8; 64];

Expand Down

0 comments on commit 0ba5fa1

Please sign in to comment.