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
use super::hotp::HOTP;
#[derive(Debug, Eq, PartialEq, Clone)]
pub struct TOTP {
hotp: HOTP,
}
impl TOTP {
pub fn new<S: Into<String>>(secret: S) -> TOTP {
TOTP { hotp: HOTP::new(secret) }
}
pub fn from_base32<S: Into<String>>(secret: S) -> Option<TOTP> {
HOTP::from_base32(secret)
.map(|hotp| TOTP { hotp })
}
pub fn from_bytes(bytes: &[u8]) -> TOTP {
TOTP { hotp: HOTP::from_bytes(bytes) }
}
pub fn generate(&self, period: u64, timestamp: u64) -> u32 {
let counter = timestamp / period;
self.hotp.generate(counter)
}
pub fn verify(&self, code: u32, period: u64, timestamp: u64) -> bool {
let code_str = code.to_string();
let code_bytes = code_str.as_bytes();
if code_bytes.len() > 6 {
return false;
}
let valid_code = self.generate(period, timestamp).to_string();
let valid_bytes = valid_code.as_bytes();
if code_bytes.len() != valid_code.len() {
return false;
}
let mut rv = 0;
for (a, b) in code_bytes.iter().zip(valid_bytes.iter()) {
rv |= a ^ b;
}
rv == 0
}
pub fn base32_secret(&self) -> String {
self.hotp.base32_secret()
}
pub fn to_uri<S: AsRef<str>>(&self, label: S, issuer: S) -> String {
format!("otpauth://totp/{}?secret={}&issuer={}",
label.as_ref(),
self.hotp.base32_secret(),
issuer.as_ref())
}
}