summaryrefslogtreecommitdiffstats
path: root/src/crack.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/crack.rs')
-rw-r--r--src/crack.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/crack.rs b/src/crack.rs
index 9bf35b9..388dde5 100644
--- a/src/crack.rs
+++ b/src/crack.rs
@@ -511,7 +511,11 @@ where
&modified_plaintext[32..48],
);
let desired_plaintext = b"comment1=cooking%20MCs;userdata=;admin=true;comment2=%20like%20a%20pound%20of%20bacon";
- return encrypt_aes_128_cbc(desired_plaintext, &key[..], &key[..]);
+ return encrypt_aes_128_cbc(
+ desired_plaintext,
+ &key[..],
+ &key[..],
+ );
}
}
}