52 lines
1.6 KiB
Rust
52 lines
1.6 KiB
Rust
// Copyright 2014 Alexis Mousset. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
//! Provides authentications functions
|
|
|
|
use serialize::base64::{self, ToBase64, FromBase64};
|
|
use serialize::hex::ToHex;
|
|
use crypto::hmac::Hmac;
|
|
use crypto::md5::Md5;
|
|
use crypto::mac::Mac;
|
|
|
|
use tools::NUL;
|
|
|
|
/// Returns a PLAIN mecanism response
|
|
pub fn plain(username: &str, password: &str) -> String {
|
|
format!("{}{}{}{}", NUL, username, NUL, password).as_bytes().to_base64(base64::STANDARD)
|
|
}
|
|
|
|
/// Returns a CRAM-MD5 mecanism response
|
|
pub fn cram_md5(username: &str, password: &str, encoded_challenge: &str) -> String {
|
|
// TODO manage errors
|
|
let challenge = encoded_challenge.from_base64().unwrap();
|
|
|
|
let mut hmac = Hmac::new(Md5::new(), password.as_bytes());
|
|
hmac.input(challenge.as_slice());
|
|
|
|
format!("{} {}", username, hmac.result().code().to_hex()).as_bytes().to_base64(base64::STANDARD)
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::{plain, cram_md5};
|
|
|
|
#[test]
|
|
fn test_plain() {
|
|
assert_eq!(plain("username", "password").as_slice(), "AHVzZXJuYW1lAHBhc3N3b3Jk");
|
|
}
|
|
|
|
#[test]
|
|
fn test_cram_md5() {
|
|
assert_eq!(cram_md5("alice", "wonderland",
|
|
"PDE3ODkzLjEzMjA2NzkxMjNAdGVzc2VyYWN0LnN1c2FtLmluPg==").as_slice(),
|
|
"YWxpY2UgNjRiMmE0M2MxZjZlZDY4MDZhOTgwOTE0ZTIzZTc1ZjA=");
|
|
}
|
|
}
|