1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#![cfg(feature="include_simple")]
use std::io;
use std::string::String;
use std::string::ToString;
use subtle::ConstantTimeEq;
use rand::{OsRng, RngCore};
use hmac::Hmac;
use sha2::Sha256;
use errors::CheckError;
use base64;
use super::pbkdf2;
use byteorder::{ByteOrder, BigEndian};
pub fn pbkdf2_simple(password: &str, c: u32) -> io::Result<String> {
let mut rng = OsRng::new()?;
let mut salt = [0u8; 16];
rng.try_fill_bytes(&mut salt)?;
let mut dk = [0u8; 32];
pbkdf2::<Hmac<Sha256>>(password.as_bytes(), &salt, c as usize, &mut dk);
let mut result = "$rpbkdf2$0$".to_string();
let mut tmp = [0u8; 4];
BigEndian::write_u32(&mut tmp, c);
result.push_str(&base64::encode(&tmp));
result.push('$');
result.push_str(&base64::encode(&salt));
result.push('$');
result.push_str(&base64::encode(&dk));
result.push('$');
Ok(result)
}
pub fn pbkdf2_check(password: &str, hashed_value: &str)
-> Result<(), CheckError> {
let mut iter = hashed_value.split('$');
if iter.next() != Some("") { Err(CheckError::InvalidFormat)?; }
if iter.next() != Some("rpbkdf2") { Err(CheckError::InvalidFormat)?; }
match iter.next() {
Some(fstr) => {
match fstr {
"0" => { }
_ => return Err(CheckError::InvalidFormat)
}
}
None => return Err(CheckError::InvalidFormat)
}
let c = match iter.next() {
Some(pstr) => match base64::decode(pstr) {
Ok(pvec) => {
if pvec.len() != 4 { return Err(CheckError::InvalidFormat); }
BigEndian::read_u32(&pvec[..])
}
Err(_) => return Err(CheckError::InvalidFormat)
},
None => return Err(CheckError::InvalidFormat)
};
let salt = match iter.next() {
Some(sstr) => match base64::decode(sstr) {
Ok(salt) => salt,
Err(_) => return Err(CheckError::InvalidFormat)
},
None => return Err(CheckError::InvalidFormat)
};
let hash = match iter.next() {
Some(hstr) => match base64::decode(hstr) {
Ok(hash) => hash,
Err(_) => return Err(CheckError::InvalidFormat)
},
None => return Err(CheckError::InvalidFormat)
};
if iter.next() != Some("") { Err(CheckError::InvalidFormat)?; }
if iter.next() != None { Err(CheckError::InvalidFormat)?; }
let mut output = vec![0u8; hash.len()];
pbkdf2::<Hmac<Sha256>>(password.as_bytes(), &salt, c as usize, &mut output);
if output.ct_eq(&hash).unwrap_u8() == 1 {
Ok(())
} else {
Err(CheckError::HashMismatch)
}
}