From 0cf3044d1262610680790f3353c97a59968aafdc Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 14 May 2015 16:33:47 -0400 Subject: problem 30 --- tests/set4.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'tests') diff --git a/tests/set4.rs b/tests/set4.rs index 1d31a85..d6fbeb5 100644 --- a/tests/set4.rs +++ b/tests/set4.rs @@ -155,3 +155,25 @@ fn problem_29 () { }) ); } + +#[test] +fn problem_30 () { + let key: Vec = ::rand::thread_rng() + .gen_iter() + .take(::rand::thread_rng().gen_range(5, 25)) + .collect(); + + let valid_input = b"comment1=cooking%20MCs;userdata=foo;comment2=%20like%20a%20pound%20of%20bacon"; + let valid_mac = matasano::md4_mac(valid_input, &key[..]); + let possibles = matasano::crack_md4_mac_length_extension(valid_input, valid_mac, b";admin=true"); + assert!( + possibles.iter().all(|&(ref input, _)| { + input.ends_with(b";admin=true") + }) + ); + assert!( + possibles.iter().any(|&(ref input, ref mac)| { + &matasano::md4_mac(&input[..], &key[..])[..] == &mac[..] + }) + ); +} -- cgit v1.2.3-54-g00ecf