From 30e79b5d1f666b911eec662172b39acd44a5c54c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 6 May 2017 13:21:58 +0100 Subject: [PATCH 1/3] remove println!() introduced in 47bc133c --- sasl/src/client/mechanisms/scram.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/sasl/src/client/mechanisms/scram.rs b/sasl/src/client/mechanisms/scram.rs index dd47fcd7..0c1ef3fd 100644 --- a/sasl/src/client/mechanisms/scram.rs +++ b/sasl/src/client/mechanisms/scram.rs @@ -126,7 +126,6 @@ impl Mechanism for Scram { 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); From 9c652954db4d973025f79b87671c303c3ea9a97a Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 6 May 2017 13:29:32 +0100 Subject: [PATCH 2/3] update base64 dependency --- sasl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sasl/Cargo.toml b/sasl/Cargo.toml index 8c0ebe20..0593f344 100644 --- a/sasl/Cargo.toml +++ b/sasl/Cargo.toml @@ -18,7 +18,7 @@ default = ["scram"] scram = ["openssl"] [dependencies] -base64 = "0.4.0" +base64 = "0.5.0" [dependencies.openssl] version = "0.9.7" From 376626aed4becd2cee2047ce7902dd3a77fab1bc Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sat, 6 May 2017 13:29:42 +0100 Subject: [PATCH 3/3] make a new patch release --- sasl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sasl/Cargo.toml b/sasl/Cargo.toml index 0593f344..6c704f50 100644 --- a/sasl/Cargo.toml +++ b/sasl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sasl" -version = "0.4.0" +version = "0.4.1" authors = ["lumi "] description = "A crate for SASL authentication. Currently only does the client side." homepage = "https://gitlab.com/lumi/sasl-rs"