summaryrefslogtreecommitdiffstats
path: root/tests/set2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/set2.rs')
-rw-r--r--tests/set2.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/set2.rs b/tests/set2.rs
index a77cf7a..9194fb2 100644
--- a/tests/set2.rs
+++ b/tests/set2.rs
@@ -50,7 +50,10 @@ fn problem_11() {
unsafe {
LAST_MODE = matasano::BlockCipherMode::ECB;
}
- return matasano::encrypt_aes_128_ecb(&padded_input[..], &key[..]);
+ return matasano::encrypt_aes_128_ecb(
+ &padded_input[..],
+ &key[..],
+ );
} else {
unsafe {
LAST_MODE = matasano::BlockCipherMode::CBC;