-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathlib.rs
571 lines (500 loc) · 18.7 KB
/
lib.rs
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
//! Easily hash and verify passwords using bcrypt
#![forbid(unsafe_code)]
#![cfg_attr(not(feature = "std"), no_std)]
#[cfg(any(feature = "alloc", feature = "std", test))]
extern crate alloc;
#[cfg(any(feature = "alloc", feature = "std", test))]
use alloc::{
string::{String, ToString},
vec::Vec,
};
#[cfg(feature = "zeroize")]
use zeroize::Zeroize;
use base64::{alphabet::BCRYPT, engine::general_purpose::NO_PAD, engine::GeneralPurpose};
use core::fmt;
#[cfg(any(feature = "alloc", feature = "std"))]
use {base64::Engine, core::convert::AsRef, core::str::FromStr};
mod bcrypt;
mod errors;
pub use crate::bcrypt::bcrypt;
pub use crate::errors::{BcryptError, BcryptResult};
// Cost constants
const MIN_COST: u32 = 4;
const MAX_COST: u32 = 31;
pub const DEFAULT_COST: u32 = 12;
pub const BASE_64: GeneralPurpose = GeneralPurpose::new(&BCRYPT, NO_PAD);
#[cfg(any(feature = "alloc", feature = "std"))]
#[derive(Debug, PartialEq, Eq)]
/// A bcrypt hash result before concatenating
pub struct HashParts {
cost: u32,
salt: String,
hash: String,
}
#[derive(Clone, Debug)]
/// BCrypt hash version
/// https://en.wikipedia.org/wiki/Bcrypt#Versioning_history
pub enum Version {
TwoA,
TwoX,
TwoY,
TwoB,
}
#[cfg(any(feature = "alloc", feature = "std"))]
impl HashParts {
/// Creates the bcrypt hash string from all its parts
fn format(self) -> String {
self.format_for_version(Version::TwoB)
}
/// Get the bcrypt hash cost
pub fn get_cost(&self) -> u32 {
self.cost
}
/// Get the bcrypt hash salt
pub fn get_salt(&self) -> String {
self.salt.clone()
}
/// Creates the bcrypt hash string from all its part, allowing to customize the version.
pub fn format_for_version(&self, version: Version) -> String {
// Cost need to have a length of 2 so padding with a 0 if cost < 10
alloc::format!("${}${:02}${}{}", version, self.cost, self.salt, self.hash)
}
}
#[cfg(any(feature = "alloc", feature = "std"))]
impl FromStr for HashParts {
type Err = BcryptError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
split_hash(s)
}
}
#[cfg(any(feature = "alloc", feature = "std"))]
impl ToString for HashParts {
fn to_string(&self) -> String {
self.format_for_version(Version::TwoY)
}
}
impl fmt::Display for Version {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let str = match self {
Version::TwoA => "2a",
Version::TwoB => "2b",
Version::TwoX => "2x",
Version::TwoY => "2y",
};
write!(f, "{}", str)
}
}
/// The main meat: actually does the hashing and does some verification with
/// the cost to ensure it's a correct one. If err_on_truncation, this method will return
/// `BcryptError::Truncation`; otherwise it will truncate the password.
#[cfg(any(feature = "alloc", feature = "std"))]
fn _hash_password(
password: &[u8],
cost: u32,
salt: [u8; 16],
err_on_truncation: bool,
) -> BcryptResult<HashParts> {
if !(MIN_COST..=MAX_COST).contains(&cost) {
return Err(BcryptError::CostNotAllowed(cost));
}
// Passwords need to be null terminated
let mut vec = Vec::with_capacity(password.len() + 1);
vec.extend_from_slice(password);
vec.push(0);
// We only consider the first 72 chars; truncate if necessary.
// `bcrypt` below will panic if len > 72
let truncated = if vec.len() > 72 {
if err_on_truncation {
return Err(BcryptError::Truncation(vec.len()));
}
&vec[..72]
} else {
&vec
};
let output = bcrypt::bcrypt(cost, salt, truncated);
#[cfg(feature = "zeroize")]
vec.zeroize();
Ok(HashParts {
cost,
salt: BASE_64.encode(salt),
hash: BASE_64.encode(&output[..23]), // remember to remove the last byte
})
}
/// Takes a full hash and split it into 3 parts:
/// cost, salt and hash
#[cfg(any(feature = "alloc", feature = "std"))]
fn split_hash(hash: &str) -> BcryptResult<HashParts> {
let mut parts = HashParts {
cost: 0,
salt: "".to_string(),
hash: "".to_string(),
};
// Should be [prefix, cost, hash]
let raw_parts: Vec<_> = hash.split('$').filter(|s| !s.is_empty()).collect();
if raw_parts.len() != 3 {
return Err(BcryptError::InvalidHash(hash.to_string()));
}
if raw_parts[0] != "2y" && raw_parts[0] != "2b" && raw_parts[0] != "2a" && raw_parts[0] != "2x"
{
return Err(BcryptError::InvalidPrefix(raw_parts[0].to_string()));
}
if let Ok(c) = raw_parts[1].parse::<u32>() {
parts.cost = c;
} else {
return Err(BcryptError::InvalidCost(raw_parts[1].to_string()));
}
if raw_parts[2].len() == 53 && raw_parts[2].is_char_boundary(22) {
parts.salt = raw_parts[2][..22].chars().collect();
parts.hash = raw_parts[2][22..].chars().collect();
} else {
return Err(BcryptError::InvalidHash(hash.to_string()));
}
Ok(parts)
}
/// Generates a password hash using the cost given.
/// The salt is generated randomly using the OS randomness
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn hash<P: AsRef<[u8]>>(password: P, cost: u32) -> BcryptResult<String> {
hash_with_result(password, cost).map(|r| r.format())
}
/// Generates a password hash using the cost given.
/// The salt is generated randomly using the OS randomness
/// Will return BcryptError::Truncation if password is longer than 72 bytes
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn non_truncating_hash<P: AsRef<[u8]>>(password: P, cost: u32) -> BcryptResult<String> {
non_truncating_hash_with_result(password, cost).map(|r| r.format())
}
/// Generates a password hash using the cost given.
/// The salt is generated randomly using the OS randomness.
/// The function returns a result structure and allows to format the hash in different versions.
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn hash_with_result<P: AsRef<[u8]>>(password: P, cost: u32) -> BcryptResult<HashParts> {
let salt = {
let mut s = [0u8; 16];
getrandom::fill(&mut s).map(|_| s)
}?;
_hash_password(password.as_ref(), cost, salt, false)
}
/// Generates a password hash using the cost given.
/// The salt is generated randomly using the OS randomness.
/// The function returns a result structure and allows to format the hash in different versions.
/// Will return BcryptError::Truncation if password is longer than 72 bytes
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn non_truncating_hash_with_result<P: AsRef<[u8]>>(
password: P,
cost: u32,
) -> BcryptResult<HashParts> {
let salt = {
let mut s = [0u8; 16];
getrandom::fill(&mut s).map(|_| s)
}?;
_hash_password(password.as_ref(), cost, salt, true)
}
/// Generates a password given a hash and a cost.
/// The function returns a result structure and allows to format the hash in different versions.
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn hash_with_salt<P: AsRef<[u8]>>(
password: P,
cost: u32,
salt: [u8; 16],
) -> BcryptResult<HashParts> {
_hash_password(password.as_ref(), cost, salt, false)
}
/// Generates a password given a hash and a cost.
/// The function returns a result structure and allows to format the hash in different versions.
/// Will return BcryptError::Truncation if password is longer than 72 bytes
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn non_truncating_hash_with_salt<P: AsRef<[u8]>>(
password: P,
cost: u32,
salt: [u8; 16],
) -> BcryptResult<HashParts> {
_hash_password(password.as_ref(), cost, salt, true)
}
/// Verify the password against the hash by extracting the salt from the hash and recomputing the
/// hash from the password. If `err_on_truncation` is set to true, then this method will return
/// `BcryptError::Truncation`.
#[cfg(any(feature = "alloc", feature = "std"))]
fn _verify<P: AsRef<[u8]>>(password: P, hash: &str, err_on_truncation: bool) -> BcryptResult<bool> {
use subtle::ConstantTimeEq;
let parts = split_hash(hash)?;
let salt = BASE_64.decode(&parts.salt)?;
let salt_len = salt.len();
let generated = _hash_password(
password.as_ref(),
parts.cost,
salt.try_into()
.map_err(|_| BcryptError::InvalidSaltLen(salt_len))?,
err_on_truncation,
)?;
let source_decoded = BASE_64.decode(parts.hash)?;
let generated_decoded = BASE_64.decode(generated.hash)?;
Ok(source_decoded.ct_eq(&generated_decoded).into())
}
/// Verify that a password is equivalent to the hash provided
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn verify<P: AsRef<[u8]>>(password: P, hash: &str) -> BcryptResult<bool> {
_verify(password, hash, false)
}
/// Verify that a password is equivalent to the hash provided.
/// Only use this if you are only using `non_truncating_hash` to generate the hash.
/// It will return an error for inputs that will work if generated from other sources.
#[cfg(any(feature = "alloc", feature = "std"))]
pub fn non_truncating_verify<P: AsRef<[u8]>>(password: P, hash: &str) -> BcryptResult<bool> {
_verify(password, hash, true)
}
#[cfg(all(test, any(feature = "alloc", feature = "std")))]
mod tests {
use crate::non_truncating_hash;
use super::{
_hash_password,
alloc::{
string::{String, ToString},
vec,
vec::Vec,
},
hash, hash_with_salt, non_truncating_verify, split_hash, verify, BcryptError, BcryptResult,
HashParts, Version, DEFAULT_COST,
};
use core::convert::TryInto;
use core::iter;
use core::str::FromStr;
use quickcheck::{quickcheck, TestResult};
#[test]
fn can_split_hash() {
let hash = "$2y$12$L6Bc/AlTQHyd9liGgGEZyOFLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u";
let output = split_hash(hash).unwrap();
let expected = HashParts {
cost: 12,
salt: "L6Bc/AlTQHyd9liGgGEZyO".to_string(),
hash: "FLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u".to_string(),
};
assert_eq!(output, expected);
}
#[test]
fn can_output_cost_and_salt_from_parsed_hash() {
let hash = "$2y$12$L6Bc/AlTQHyd9liGgGEZyOFLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u";
let parsed = HashParts::from_str(hash).unwrap();
assert_eq!(parsed.get_cost(), 12);
assert_eq!(parsed.get_salt(), "L6Bc/AlTQHyd9liGgGEZyO".to_string());
}
#[test]
fn returns_an_error_if_a_parsed_hash_is_baddly_formated() {
let hash1 = "$2y$12$L6Bc/AlTQHyd9lGEZyOFLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u";
assert!(HashParts::from_str(hash1).is_err());
let hash2 = "!2y$12$L6Bc/AlTQHyd9liGgGEZyOFLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u";
assert!(HashParts::from_str(hash2).is_err());
let hash3 = "$2y$-12$L6Bc/AlTQHyd9liGgGEZyOFLPHNgyxeEPfgYfBCVxJ7JIlwxyVU3u";
assert!(HashParts::from_str(hash3).is_err());
}
#[test]
fn can_verify_hash_generated_from_some_online_tool() {
let hash = "$2a$04$UuTkLRZZ6QofpDOlMz32MuuxEHA43WOemOYHPz6.SjsVsyO1tDU96";
assert!(verify("password", hash).unwrap());
}
#[test]
fn can_verify_hash_generated_from_python() {
let hash = "$2b$04$EGdrhbKUv8Oc9vGiXX0HQOxSg445d458Muh7DAHskb6QbtCvdxcie";
assert!(verify("correctbatteryhorsestapler", hash).unwrap());
}
#[test]
fn can_verify_hash_generated_from_node() {
let hash = "$2a$04$n4Uy0eSnMfvnESYL.bLwuuj0U/ETSsoTpRT9GVk5bektyVVa5xnIi";
assert!(verify("correctbatteryhorsestapler", hash).unwrap());
}
#[test]
fn can_verify_hash_generated_from_go() {
/*
package main
import (
"io"
"os"
"golang.org/x/crypto/bcrypt"
)
func main() {
buf, err := io.ReadAll(os.Stdin)
if err != nil {
panic(err)
}
out, err := bcrypt.GenerateFromPassword(buf, bcrypt.MinCost)
if err != nil {
panic(err)
}
os.Stdout.Write(out)
os.Stdout.Write([]byte("\n"))
}
*/
let binary_input = vec![
29, 225, 195, 167, 223, 236, 85, 195, 114, 227, 7, 0, 209, 239, 189, 24, 51, 105, 124,
168, 151, 75, 144, 64, 198, 197, 196, 4, 241, 97, 110, 135,
];
let hash = "$2a$04$tjARW6ZON3PhrAIRW2LG/u9aDw5eFdstYLR8nFCNaOQmsH9XD23w.";
assert!(verify(binary_input, hash).unwrap());
}
#[test]
fn invalid_hash_does_not_panic() {
let binary_input = vec![
29, 225, 195, 167, 223, 236, 85, 195, 114, 227, 7, 0, 209, 239, 189, 24, 51, 105, 124,
168, 151, 75, 144, 64, 198, 197, 196, 4, 241, 97, 110, 135,
];
let hash = "$2a$04$tjARW6ZON3PhrAIRW2LG/u9a.";
assert!(verify(binary_input, hash).is_err());
}
#[test]
fn a_wrong_password_is_false() {
let hash = "$2b$04$EGdrhbKUv8Oc9vGiXX0HQOxSg445d458Muh7DAHskb6QbtCvdxcie";
assert!(!verify("wrong", hash).unwrap());
}
#[test]
fn errors_with_invalid_hash() {
// there is another $ in the hash part
let hash = "$2a$04$n4Uy0eSnMfvnESYL.bLwuuj0U/ETSsoTpRT9GVk$5bektyVVa5xnIi";
assert!(verify("correctbatteryhorsestapler", hash).is_err());
}
#[test]
fn errors_with_non_number_cost() {
// the cost is not a number
let hash = "$2a$ab$n4Uy0eSnMfvnESYL.bLwuuj0U/ETSsoTpRT9GVk$5bektyVVa5xnIi";
assert!(verify("correctbatteryhorsestapler", hash).is_err());
}
#[test]
fn errors_with_a_hash_too_long() {
// the cost is not a number
let hash = "$2a$04$n4Uy0eSnMfvnESYL.bLwuuj0U/ETSsoTpRT9GVk$5bektyVVa5xnIerererereri";
assert!(verify("correctbatteryhorsestapler", hash).is_err());
}
#[test]
fn can_verify_own_generated() {
let hashed = hash("hunter2", 4).unwrap();
assert_eq!(true, verify("hunter2", &hashed).unwrap());
}
#[test]
fn long_passwords_truncate_correctly() {
// produced with python -c 'import bcrypt; bcrypt.hashpw(b"x"*100, b"$2a$05$...............................")'
let hash = "$2a$05$......................YgIDy4hFBdVlc/6LHnD9mX488r9cLd2";
assert!(verify(iter::repeat("x").take(100).collect::<String>(), hash).unwrap());
}
#[test]
fn non_truncating_operations() {
assert!(matches!(
non_truncating_hash(iter::repeat("x").take(72).collect::<String>(), DEFAULT_COST),
BcryptResult::Err(BcryptError::Truncation(73))
));
assert!(matches!(
non_truncating_hash(iter::repeat("x").take(71).collect::<String>(), DEFAULT_COST),
BcryptResult::Ok(_)
));
let hash = "$2a$05$......................YgIDy4hFBdVlc/6LHnD9mX488r9cLd2";
assert!(matches!(
non_truncating_verify(iter::repeat("x").take(100).collect::<String>(), hash),
Err(BcryptError::Truncation(101))
));
}
#[test]
fn generate_versions() {
let password = "hunter2".as_bytes();
let salt = vec![0; 16];
let result =
_hash_password(password, DEFAULT_COST, salt.try_into().unwrap(), false).unwrap();
assert_eq!(
"$2a$12$......................21jzCB1r6pN6rp5O2Ev0ejjTAboskKm",
result.format_for_version(Version::TwoA)
);
assert_eq!(
"$2b$12$......................21jzCB1r6pN6rp5O2Ev0ejjTAboskKm",
result.format_for_version(Version::TwoB)
);
assert_eq!(
"$2x$12$......................21jzCB1r6pN6rp5O2Ev0ejjTAboskKm",
result.format_for_version(Version::TwoX)
);
assert_eq!(
"$2y$12$......................21jzCB1r6pN6rp5O2Ev0ejjTAboskKm",
result.format_for_version(Version::TwoY)
);
let hash = result.to_string();
assert_eq!(true, verify("hunter2", &hash).unwrap());
}
#[test]
fn allow_null_bytes() {
// hash p1, check the hash against p2:
fn hash_and_check(p1: &[u8], p2: &[u8]) -> Result<bool, BcryptError> {
let fast_cost = 4;
match hash(p1, fast_cost) {
Ok(s) => verify(p2, &s),
Err(e) => Err(e),
}
}
fn assert_valid_password(p1: &[u8], p2: &[u8], expected: bool) {
match hash_and_check(p1, p2) {
Ok(checked) => {
if checked != expected {
panic!(
"checked {:?} against {:?}, incorrect result {}",
p1, p2, checked
)
}
}
Err(e) => panic!("error evaluating password: {} for {:?}.", e, p1),
}
}
// bcrypt should consider all of these distinct:
let test_passwords = vec![
"\0",
"passw0rd\0",
"password\0with tail",
"\0passw0rd",
"a",
"a\0",
"a\0b\0",
];
for (i, p1) in test_passwords.iter().enumerate() {
for (j, p2) in test_passwords.iter().enumerate() {
assert_valid_password(p1.as_bytes(), p2.as_bytes(), i == j);
}
}
// this is a quirk of the bcrypt algorithm: passwords that are entirely null
// bytes hash to the same value, even if they are different lengths:
assert_valid_password("\0\0\0\0\0\0\0\0".as_bytes(), "\0".as_bytes(), true);
}
#[test]
fn hash_with_fixed_salt() {
let salt = [
38, 113, 212, 141, 108, 213, 195, 166, 201, 38, 20, 13, 47, 40, 104, 18,
];
let hashed = hash_with_salt("My S3cre7 P@55w0rd!", 5, salt)
.unwrap()
.to_string();
assert_eq!(
"$2y$05$HlFShUxTu4ZHHfOLJwfmCeDj/kuKFKboanXtDJXxCC7aIPTUgxNDe",
&hashed
);
}
quickcheck! {
fn can_verify_arbitrary_own_generated(pass: Vec<u8>) -> BcryptResult<bool> {
let mut pass = pass;
pass.retain(|&b| b != 0);
let hashed = hash(&pass, 4)?;
verify(pass, &hashed)
}
fn doesnt_verify_different_passwords(a: Vec<u8>, b: Vec<u8>) -> BcryptResult<TestResult> {
let mut a = a;
a.retain(|&b| b != 0);
let mut b = b;
b.retain(|&b| b != 0);
if a == b {
return Ok(TestResult::discard());
}
let hashed = hash(a, 4)?;
Ok(TestResult::from_bool(!verify(b, &hashed)?))
}
}
#[test]
fn does_no_error_on_char_boundary_splitting() {
// Just checks that it does not panic
let _ = verify(
&[],
"2a$$$0$OOOOOOOOOOOOOOOOOOOOO£OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO",
);
}
}