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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
#![cfg_attr(all(feature="bench", test), feature(test))]
#![allow(unknown_lints)]
#![deny(clippy_pedantic)]
#![allow(
missing_docs_in_private_items,
new_ret_no_self,
use_debug,
)]
#![deny(
const_err,
dead_code,
deprecated,
exceeding_bitshifts,
fat_ptr_transmutes,
improper_ctypes,
missing_docs,
mutable_transmutes,
no_mangle_const_items,
non_camel_case_types,
non_shorthand_field_patterns,
non_snake_case,
non_upper_case_globals,
overflowing_literals,
path_statements,
plugin_as_library,
private_no_mangle_fns,
private_no_mangle_statics,
stable_features,
trivial_casts,
trivial_numeric_casts,
unconditional_recursion,
unknown_crate_types,
unreachable_code,
unsafe_code,
unstable_features,
unused_allocation,
unused_assignments,
unused_attributes,
unused_comparisons,
unused_extern_crates,
unused_features,
unused_imports,
unused_import_braces,
unused_must_use,
unused_mut,
unused_parens,
unused_qualifications,
unused_results,
unused_unsafe,
unused_variables,
variant_size_differences,
warnings,
while_true,
)]
#![cfg_attr(all(feature="bench", test), allow(unstable_features))]
extern crate data_encoding;
#[macro_use]
extern crate error_chain;
extern crate itertools;
#[macro_use]
extern crate lazy_static;
#[macro_use]
extern crate log;
extern crate num_traits;
extern crate ring;
extern crate ring_pwhash;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_mcf;
extern crate serde_yaml;
pub mod rpassword {
extern crate rpassword;
pub use self::rpassword::*;
}
pub mod errors {
use ring;
use serde_mcf;
error_chain!{
foreign_links {
Deserialize(serde_mcf::de::Error) #[doc = "Errors from deserializing MCF password hashes."] ;
Ring(ring::error::Unspecified) #[doc = "Errors originiating from `ring`"] ;
Serialize(serde_mcf::ser::Error) #[doc = "Errors from serializing to a MCF password hash."] ;
}
}
}
use errors::*;
use ring::rand::SecureRandom;
#[macro_use]
mod bench;
pub mod config;
pub mod key;
pub mod hashing;
use hashing::Output;
pub mod primitives;
pub struct Cleartext(Vec<u8>);
impl From<String> for Cleartext {
fn from(thing: String) -> Self {
Cleartext(thing.into_bytes())
}
}
pub fn hash_password(password: String) -> String {
hash_password_safe(password).expect("failed to hash password")
}
#[doc(hidden)]
pub fn hash_password_safe(password: String) -> Result<String> {
let pwd_hash = config::DEFAULT_ALG.hash(password.into());
Ok(serde_mcf::to_string(&pwd_hash)?)
}
pub fn verify_password(hash: &str, password: String) -> bool {
verify_password_safe(hash, password).unwrap_or(false)
}
#[doc(hidden)]
pub fn verify_password_safe(hash: &str, password: String) -> Result<bool> {
let pwd_hash: Output = serde_mcf::from_str(hash)?;
Ok(pwd_hash.verify(password.into()))
}
pub fn verify_password_update_hash(hash: &mut String, password: String) -> bool {
verify_password_update_hash_safe(hash, password).unwrap_or(false)
}
#[doc(hidden)]
pub fn verify_password_update_hash_safe(hash: &mut String, password: String) -> Result<bool> {
let pwd_hash: Output = serde_mcf::from_str(hash)?;
if pwd_hash.verify(password.clone().into()) {
if pwd_hash.alg != *config::DEFAULT_ALG {
let new_hash = serde_mcf::to_string(&config::DEFAULT_ALG.hash(password.into()))?;
*hash = new_hash;
}
Ok(true)
} else {
Ok(false)
}
}
pub fn migrate_hash(hash: &mut String) {
migrate_hash_safe(hash).expect("failed to migrate password");
}
#[doc(hidden)]
pub fn migrate_hash_safe(hash: &mut String) -> Result<()> {
let pwd_hash: Output = serde_mcf::from_str(hash)?;
if !pwd_hash.alg.needs_migrating() {
return Ok(());
}
let new_params = pwd_hash.alg.to_wrapped(config::DEFAULT_PRIM.clone());
let new_salt = pwd_hash.salt;
let new_hash = (*config::DEFAULT_PRIM).compute(&pwd_hash.hash, &new_salt);
let new_hash = Output {
alg: new_params,
hash: new_hash,
salt: new_salt,
};
*hash = serde_mcf::to_string(&new_hash)?;
Ok(())
}
fn gen_salt(rng: &SecureRandom) -> Vec<u8> {
let mut salt = vec![0_u8; 16];
if rng.fill(&mut salt).is_ok() {
salt
} else {
error!("failed to get fresh randomness, relying on backup seed to generate pseudoranom output");
config::backup_gen_salt()
}
}
#[cfg(test)]
use ring::rand::SystemRandom;
#[cfg(test)]
fn get_salt() -> Vec<u8> {
gen_salt(&SystemRandom)
}
#[cfg(test)]
mod api_tests {
use super::*;
use config::DEFAULT_PRIM;
use hashing::{Algorithm, Output};
use primitives::{Bcrypt, Hmac};
#[test]
fn sanity_check() {
let password = "".to_owned();
let hash = hash_password(password);
println!("Hash: {:?}", hash);
let password = "".to_owned();
assert!(verify_password(&hash, password));
assert!(!verify_password(&hash, "wrong password".to_owned()));
let password = "hunter2".to_owned();
let hash = hash_password(password);
let password = "hunter2".to_owned();
assert!(verify_password(&hash, password));
assert!(!verify_password(&hash, "wrong password".to_owned()));
}
#[test]
fn external_check() {
let password = "hunter2".to_owned();
let hash = "$2a$10$u.Fhlm/a1DpHr/z5KrsLG.iZ7iM9r8DInJvZ57VArRKuhlHAoVZOi";
let pwd_hash: Output = serde_mcf::from_str(hash).unwrap();
println!("{:?}", pwd_hash);
let expected_hash = pwd_hash.alg.hash_with_salt(password.as_bytes(), &pwd_hash.salt);
assert_eq!(pwd_hash.hash, &expected_hash[..]);
assert!(verify_password(&hash, password));
}
#[test]
fn emoji_password() {
let password = "emojisaregreat💖💖💖".to_owned();
let hash = hash_password(password.clone().into());
assert!(verify_password(&hash, password.into()));
}
#[test]
fn nested_hash() {
let password = "hunter2".to_owned();
let params = Algorithm::Nested {
inner: Box::new(Algorithm::default()),
outer: DEFAULT_PRIM.clone(),
};
let hash = params.hash(password.into());
let password = "hunter2".to_owned();
println!("{:?}", hash);
assert!(hash.verify(password.into()));
let password = "hunter2".to_owned();
let hash = serde_mcf::to_string(&hash).unwrap();
println!("{:?}", hash);
let _hash: Output = serde_mcf::from_str(&hash).unwrap();
println!("{:?}", _hash);
assert!(verify_password(&hash, password));
}
#[test]
fn verify_update() {
let password = "hunter2".to_owned();
let params = Algorithm::Nested {
inner: Box::new(Algorithm::default()),
outer: DEFAULT_PRIM.clone(),
};
let hash = params.hash(password.into());
let password = "hunter2".to_owned();
assert!(hash.verify(password.into()));
let password = "hunter2".to_owned();
let hash = serde_mcf::to_string(&hash).unwrap();
assert!(verify_password(&hash, password));
}
#[test]
fn migrate() {
let password = "hunter2".to_owned();
let params = Algorithm::Single(Bcrypt::default());
let mut hash = serde_mcf::to_string(¶ms.hash(password.into())).unwrap();
println!("Original: {:?}", hash);
migrate_hash(&mut hash);
println!("Migrated: {:?}", hash);
let password = "hunter2".to_owned();
assert!(verify_password(&hash, password));
let password = "hunter2".to_owned();
assert!(verify_password_update_hash(&mut hash, password));
println!("Updated: {:?}", hash);
let password = "hunter2".to_owned();
let mut pwd_hash: Output = serde_mcf::from_str(&hash).unwrap();
pwd_hash.alg = Algorithm::default();
assert!(pwd_hash.verify(password.into()));
}
#[test]
fn handles_broken_hashes() {
let password = "hunter2".to_owned();
let hash = "$$scrypt$ln=14p=1$Yw/fI4D7b2PNqpUCg5UzKA$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt+k5c";
assert!(!verify_password(&hash, password.clone()));
let hash = "$$nocrypt$ln=14p=1$Yw/fI4D7b2PNqpUCg5UzKA$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt+k5c";
assert!(!verify_password(&hash, password.clone()));
let hash = "$$scrypt$ln=14p=1$$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt+k5c";
assert!(!verify_password(&hash, password.clone()));
let hash = "$$scrypt$ln=14p=1$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt+k5c";
assert!(!verify_password(&hash, password.clone()));
let hash = "$$scrypt$ln=14,r=8,\
p=1$Yw/fI4D7b2PNqpUCg5UzKA$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt";
assert!(!verify_password(&hash, password.clone()));
let hash = "$$scrypt$ln=14,r=8,\
p=1$Yw/fI4D7b2PNqpUCg5UzKA$kp6humqf/GUV+6HQ/jND3gd8Zoz4VyBgGqk4DHt+k5cAAAA";
assert!(!verify_password(&hash, password.clone()));
}
#[test]
fn migrate_hash_ok() {
let mut hash = "$2a$10$175ikf/E6E.73e83.fJRbODnYWBwmfS0ENdzUBZbedUNGO.99wJfa".to_owned();
migrate_hash(&mut hash);
}
#[test]
fn hash_and_key() {
let password = "hunter2".to_owned();
let alg = Algorithm::Single(Bcrypt::default()).into_wrapped(Hmac::default().into());
let hash = serde_mcf::to_string(&alg.hash(password.clone().into())).unwrap();
assert!(verify_password(&hash, password));
}
use std::result;
use std::marker::{Send, Sync};
struct NoRandomness;
static NO_RAND_REF: &'static (SecureRandom + Send + Sync) = &NoRandomness;
impl SecureRandom for NoRandomness {
fn fill(&self, _dest: &mut [u8]) -> result::Result<(), ring::error::Unspecified> {
Err(ring::error::Unspecified)
}
}
#[test]
fn no_randomness_ok() {
use primitives::Sod;
use std::mem;
let salt1 = ::gen_salt(&NoRandomness);
let salt2 = ::gen_salt(&NoRandomness);
assert!(salt1 != salt2);
#[allow(unsafe_code)]
unsafe {
let rng = mem::transmute::<*const Sod<SecureRandom + Send + Sync>, *mut Sod<SecureRandom + Send + Sync>>(&*config::RANDOMNESS_SOURCE);
*rng = Sod::Static(NO_RAND_REF);
}
let hash1 = hash_password("hunter2".to_owned());
let hash2 = hash_password("hunter2".to_owned());
assert!(hash1 != hash2);
}
}