remove println!() introduced in 7b52210d

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-06 13:21:58 +01:00
parent b0e72d586b
commit a8fe78704b

View file

@ -145,7 +145,6 @@ impl<S: ScramProvider> Mechanism for Scram<S> {
auth_message.extend(challenge);
auth_message.push(b',');
auth_message.extend(&client_final_message_bare);
println!("_ {}", String::from_utf8_lossy(&auth_message));
let stored_key = S::hash(&client_key);
let client_signature = S::hmac(&auth_message, &stored_key);
let client_proof = xor(&client_key, &client_signature);