mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
remove println!() introduced in 47bc133c
This commit is contained in:
parent
714ee28006
commit
30e79b5d1f
1 changed files with 0 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue