remove println!() introduced in 47bc133c

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-06 13:21:58 +01:00
parent 714ee28006
commit 30e79b5d1f

View file

@ -126,7 +126,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);