[[package]]
name = "openssl"
version = "0.2.2"
-source = "git+https://github.com/sfackler/rust-openssl.git#2901c279ab154933385fda86c620f87d3392a36d"
+source = "git+https://github.com/sfackler/rust-openssl.git#b8a41f79a1a78791dddd453db0aab5f0957152fc"
dependencies = [
"openssl-sys 0.2.2 (git+https://github.com/sfackler/rust-openssl.git)",
]
[[package]]
name = "openssl-sys"
version = "0.2.2"
-source = "git+https://github.com/sfackler/rust-openssl.git#2901c279ab154933385fda86c620f87d3392a36d"
+source = "git+https://github.com/sfackler/rust-openssl.git#b8a41f79a1a78791dddd453db0aab5f0957152fc"
dependencies = [
"pkg-config 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
*/
match oracle_machine::decipher(address, PORT, &xor_operand, &cipher_block, variant) {
- Some(ref deciphered) if deciphered.as_slice() == &expected_plain_block => {
+ Some(ref deciphered) if deciphered.as_slice() == expected_plain_block => {
println!("The oracle machine has found the plain block!:");
println!(" Expected block: {}", expected_plain_block.to_vec());
println!(" Decrypted block: {}", deciphered)