Merge branch 'secret' of github.com:steven89/totp-rs into secret
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
diff --git a/examples/rfc-6238.rs b/examples/rfc-6238.rs
new file mode 100644
index 0000000..12a9d59
--- /dev/null
+++ b/examples/rfc-6238.rs
@@ -0,0 +1,17 @@
+use totp_rs::{Rfc6238, TOTP};
+
+fn main () {
+ let mut rfc = Rfc6238::with_defaults(
+ "totp-sercret-123"
+ ).unwrap();
+
+ // optional, set digits, issuer, account_name
+ rfc.digits(8).unwrap();
+ rfc.issuer("issuer".to_string());
+ rfc.account_name("user-account".to_string());
+
+ // create a TOTP from rfc
+ let totp = TOTP::from_rfc6238(rfc).unwrap();
+ let code = totp.generate_current().unwrap();
+ println!("code: {}", code);
+}
diff --git a/examples/ttl.rs b/examples/ttl.rs
new file mode 100644
index 0000000..7554303
--- /dev/null
+++ b/examples/ttl.rs
@@ -0,0 +1,23 @@
+use totp_rs::{Algorithm, TOTP};
+
+fn main() {
+ let totp = TOTP::new(
+ Algorithm::SHA1,
+ 6,
+ 1,
+ 30,
+ "my-secret".to_string(),
+ None,
+ "account".to_string(),
+ ).unwrap();
+
+ loop {
+ println!(
+ "code {}\t ttl {}\t valid until: {}",
+ totp.generate_current().unwrap(),
+ totp.ttl().unwrap(),
+ totp.next_step_current().unwrap()
+ );
+ std::thread::sleep(std::time::Duration::from_secs(1));
+ }
+}
diff --git a/src/lib.rs b/src/lib.rs
index 1718439..6617b2a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -46,7 +46,10 @@
//! ```
mod secret;
+mod rfc;
+
pub use secret::{Secret, SecretParseError};
+pub use rfc::{Rfc6238, Rfc6238Error};
pub use base32;
use constant_time_eq::constant_time_eq;
@@ -135,6 +138,15 @@ pub enum TotpUrlError {
AccountName,
}
+impl From<Rfc6238Error> for TotpUrlError {
+ fn from(e: Rfc6238Error) -> Self {
+ match e {
+ Rfc6238Error::InvalidDigits => TotpUrlError::Digits,
+ Rfc6238Error::SecretTooSmall => TotpUrlError::Secret,
+ }
+ }
+}
+
/// TOTP holds informations as to how to generate an auth code and validate it. Its [secret](struct.TOTP.html#structfield.secret) field is sensitive data, treat it accordingly
#[derive(Debug, Clone)]
#[cfg_attr(feature = "serde_support", derive(Serialize, Deserialize))]
@@ -191,11 +203,13 @@ impl<T: AsRef<[u8]>> TOTP<T> {
/// let decoded = base32::decode(base32::Alphabet::RFC4648 { padding: false }, &secret).unwrap();
/// let totp = TOTP::new(Algorithm::SHA1, 6, 1, 30, decoded, None, "".to_string()).unwrap();
/// ```
+ /// * `digits`: MUST be between 6 & 8
///
/// # Errors
///
/// Will return an error in case issuer or label contain the character ':'
pub fn new(algorithm: Algorithm, digits: usize, skew: u8, step: u64, secret: T, issuer: Option<String>, account_name: String) -> Result<TOTP<T>, TotpUrlError> {
+ crate::rfc::assert_digits(&digits)?;
if issuer.is_some() && issuer.as_ref().unwrap().contains(':') {
return Err(TotpUrlError::Issuer);
}
@@ -213,6 +227,15 @@ impl<T: AsRef<[u8]>> TOTP<T> {
})
}
+ /// Will create a new instance of TOTP from the given [Rfc6238](struct.Rfc6238.html) struct
+ ///
+ /// # Errors
+ ///
+ /// Will return an error in case issuer or label contain the character ':'
+ pub fn from_rfc6238(rfc: Rfc6238<T>) -> Result<TOTP<T>, TotpUrlError> {
+ TOTP::try_from(rfc)
+ }
+
/// Will sign the given timestamp
pub fn sign(&self, time: u64) -> Vec<u8> {
self.algorithm.sign(
@@ -248,6 +271,12 @@ impl<T: AsRef<[u8]>> TOTP<T> {
Ok(self.next_step(t))
}
+ /// Give the ttl (in seconds) of the current token
+ pub fn ttl(&self) -> Result<u64, SystemTimeError> {
+ let t = system_time()?;
+ Ok(self.step - (t % self.step))
+ }
+
/// Generate a token from the current system time
pub fn generate_current(&self) -> Result<String, SystemTimeError> {
let t = system_time()?;
@@ -342,12 +371,6 @@ impl<T: AsRef<[u8]>> TOTP<T> {
}
}
- if issuer.is_some() && issuer.as_ref().unwrap().contains(':') {
- return Err(TotpUrlError::Issuer);
- }
- if account_name.contains(':') {
- return Err(TotpUrlError::AccountName);
- }
if secret.is_empty() {
return Err(TotpUrlError::Secret);
}
diff --git a/src/rfc.rs b/src/rfc.rs
new file mode 100644
index 0000000..b34bdaa
--- /dev/null
+++ b/src/rfc.rs
@@ -0,0 +1,261 @@
+use crate::Algorithm;
+use crate::TotpUrlError;
+use crate::TOTP;
+
+#[cfg(feature = "serde_support")]
+use serde::{Deserialize, Serialize};
+
+/// Data is not compliant to [rfc-6238](https://tools.ietf.org/html/rfc6238)
+#[derive(Debug, Eq, PartialEq)]
+pub enum Rfc6238Error {
+ /// Implementations MUST extract a 6-digit code at a minimum and possibly 7 and 8-digit code
+ InvalidDigits,
+ /// The length of the shared secret MUST be at least 128 bits
+ SecretTooSmall,
+}
+
+impl std::fmt::Display for Rfc6238Error {
+ fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ match self {
+ Rfc6238Error::InvalidDigits => write!(
+ f,
+ "Implementations MUST extract a 6-digit code at a minimum and possibly 7 and 8-digit code"
+ ),
+ Rfc6238Error::SecretTooSmall => write!(
+ f,
+ "The length of the shared secret MUST be at least 128 bits"
+ ),
+ }
+ }
+}
+
+pub fn assert_digits(digits: &usize) -> Result<(), Rfc6238Error> {
+ if !(&6..=&8).contains(&digits) {
+ Err(Rfc6238Error::InvalidDigits)
+ } else {
+ Ok(())
+ }
+}
+
+/// [rfc-6238](https://tools.ietf.org/html/rfc6238) compliant set of options to create a [TOTP](struct.TOTP.html)
+///
+/// # Example
+/// ```
+/// use totp_rs::{Rfc6238, TOTP};
+///
+/// let mut rfc = Rfc6238::with_defaults(
+/// "totp-sercret-123"
+/// ).unwrap();
+///
+/// // optional, set digits, issuer, account_name
+/// rfc.digits(8).unwrap();
+/// rfc.issuer("issuer".to_string());
+/// rfc.account_name("user-account".to_string());
+///
+/// let totp = TOTP::from_rfc6238(rfc).unwrap();
+/// ```
+#[derive(Debug, Clone)]
+#[cfg_attr(feature = "serde_support", derive(Serialize, Deserialize))]
+pub struct Rfc6238<T = Vec<u8>> {
+ /// SHA-1
+ algorithm: Algorithm,
+ /// The number of digits composing the auth code. Per [rfc-4226](https://tools.ietf.org/html/rfc4226#section-5.3), this can oscilate between 6 and 8 digits
+ digits: usize,
+ /// The recommended value per [rfc-6238](https://tools.ietf.org/html/rfc6238#section-5.2) is 1.
+ skew: u8,
+ /// The recommended value per [rfc-6238](https://tools.ietf.org/html/rfc6238#section-5.2) is 30 seconds
+ step: u64,
+ /// As per [rfc-4226](https://tools.ietf.org/html/rfc4226#section-4) the secret should come from a strong source, most likely a CSPRNG. It should be at least 128 bits, but 160 are recommended
+ secret: T,
+ /// The "Github" part of "Github:constantoine@github.com". Must not contain a colon `:`
+ /// For example, the name of your service/website.
+ /// Not mandatory, but strongly recommended!
+ issuer: Option<String>,
+ /// The "constantoine@github.com" part of "Github:constantoine@github.com". Must not contain a colon `:`
+ /// For example, the name of your user's account.
+ account_name: String,
+}
+
+impl<T: AsRef<[u8]>> Rfc6238<T> {
+ /// Create an [rfc-6238](https://tools.ietf.org/html/rfc6238) compliant set of options that can be turned into a [TOTP](struct.TOTP.html)
+ ///
+ /// # Errors
+ ///
+ /// will return a [Rfc6238Error](enum.Rfc6238Error.html) when
+ /// - `digits` is lower than 6 or higher than 8
+ /// - `secret` is smaller than 128 bits (16 characters)
+ pub fn new(
+ digits: usize,
+ secret: T,
+ issuer: Option<String>,
+ account_name: String,
+ ) -> Result<Rfc6238<T>, Rfc6238Error> {
+ assert_digits(&digits)?;
+ if secret.as_ref().len() < 16 {
+ Err(Rfc6238Error::SecretTooSmall)
+ } else {
+ Ok(Rfc6238 {
+ algorithm: Algorithm::SHA1,
+ digits,
+ skew: 1,
+ step: 30,
+ secret,
+ issuer,
+ account_name,
+ })
+ }
+ }
+
+ /// Create an [rfc-6238](https://tools.ietf.org/html/rfc6238) compliant set of options that can be turned into a [TOTP](struct.TOTP.html),
+ /// with a default value of 6 for `digits`, None `issuer` and an empty account
+ ///
+ /// # Errors
+ ///
+ /// will return a [Rfc6238Error](enum.Rfc6238Error.html) when
+ /// - `digits` is lower than 6 or higher than 8
+ /// - `secret` is smaller than 128 bits (16 characters)
+ pub fn with_defaults(secret: T) -> Result<Rfc6238<T>, Rfc6238Error> {
+ Rfc6238::new(6, secret, None, "".to_string())
+ }
+
+ /// Set the `digits`
+ pub fn digits(&mut self, value:usize) -> Result<(), Rfc6238Error> {
+ assert_digits(&value)?;
+ self.digits = value;
+ Ok(())
+ }
+
+ /// Set the `issuer`
+ pub fn issuer(&mut self, value: String) {
+ self.issuer = Some(value);
+ }
+
+ /// Seet the `account_name`
+ pub fn account_name(&mut self, value: String) {
+ self.account_name = value;
+ }
+}
+
+impl<T: AsRef<[u8]>> TryFrom<Rfc6238<T>> for TOTP<T> {
+ type Error = TotpUrlError;
+
+ /// Try to create a [TOTP](struct.TOTP.html) from a [Rfc6238](struct.Rfc6238.html) config
+ fn try_from(rfc: Rfc6238<T>) -> Result<Self, Self::Error> {
+ TOTP::new(
+ rfc.algorithm,
+ rfc.digits,
+ rfc.skew,
+ rfc.step,
+ rfc.secret,
+ rfc.issuer,
+ rfc.account_name,
+ )
+ }
+}
+
+#[cfg(test)]
+mod tests {
+ use crate::TotpUrlError;
+
+ use super::{Rfc6238, Rfc6238Error, TOTP};
+
+ const GOOD_SECRET: &str = "01234567890123456789";
+ const ISSUER: Option<&str> = None;
+ const ACCOUNT: &str = "valid-account";
+ const INVALID_ACCOUNT: &str = ":invalid-account";
+
+ #[test]
+ fn new_rfc_digits() {
+ for x in 0..=20 {
+ let rfc = Rfc6238::new(
+ x,
+ GOOD_SECRET.to_string(),
+ ISSUER.map(str::to_string),
+ ACCOUNT.to_string(),
+ );
+ if x < 6 || x > 8 {
+ assert!(rfc.is_err());
+ assert_eq!(rfc.unwrap_err(), Rfc6238Error::InvalidDigits)
+ } else {
+ assert!(rfc.is_ok());
+ }
+ }
+ }
+
+ #[test]
+ fn new_rfc_secret() {
+ let mut secret = String::from("");
+ for _ in 0..=20 {
+ secret = format!("{}{}", secret, "0");
+ let rfc = Rfc6238::new(
+ 6,
+ secret.clone(),
+ ISSUER.map(str::to_string),
+ ACCOUNT.to_string(),
+ );
+ let rfc_default = Rfc6238::with_defaults(secret.clone());
+ if secret.len() < 16 {
+ assert!(rfc.is_err());
+ assert_eq!(rfc.unwrap_err(), Rfc6238Error::SecretTooSmall);
+ assert!(rfc_default.is_err());
+ assert_eq!(rfc_default.unwrap_err(), Rfc6238Error::SecretTooSmall);
+ } else {
+ assert!(rfc.is_ok());
+ assert!(rfc_default.is_ok());
+ }
+ }
+ }
+
+ #[test]
+ fn rfc_to_totp_ok() {
+ let rfc = Rfc6238::new(
+ 8,
+ GOOD_SECRET.to_string(),
+ ISSUER.map(str::to_string),
+ ACCOUNT.to_string(),
+ )
+ .unwrap();
+ let totp = TOTP::try_from(rfc);
+ assert!(totp.is_ok());
+ let otp = totp.unwrap();
+ assert_eq!(&otp.secret, GOOD_SECRET);
+ assert_eq!(otp.algorithm, crate::Algorithm::SHA1);
+ assert_eq!(&otp.account_name, ACCOUNT);
+ assert_eq!(otp.digits, 8);
+ assert_eq!(otp.issuer, ISSUER.map(str::to_string));
+ assert_eq!(otp.skew, 1);
+ assert_eq!(otp.step, 30)
+ }
+
+ #[test]
+ fn rfc_to_totp_fail() {
+ let rfc = Rfc6238::new(
+ 8,
+ GOOD_SECRET.to_string(),
+ ISSUER.map(str::to_string),
+ INVALID_ACCOUNT.to_string(),
+ )
+ .unwrap();
+ let totp = TOTP::try_from(rfc);
+ assert!(totp.is_err());
+ assert_eq!(totp.unwrap_err(), TotpUrlError::AccountName)
+ }
+
+ #[test]
+ fn rfc_with_default_set_values() {
+ let new_account = "new-account";
+ let new_issuer = String::from("new-issuer");
+ let mut rfc = Rfc6238::with_defaults(GOOD_SECRET.to_string()).unwrap();
+ rfc.issuer(new_issuer.clone());
+ assert_eq!(rfc.issuer, Some(new_issuer));
+ rfc.account_name(new_account.to_string());
+ assert_eq!(rfc.account_name, new_account.to_string());
+ let fail = rfc.digits(4);
+ assert!(fail.is_err());
+ assert_eq!(fail.unwrap_err(), Rfc6238Error::InvalidDigits);
+ assert_eq!(rfc.digits, 6);
+ let ok = rfc.digits(8);
+ assert!(ok.is_ok());
+ assert_eq!(rfc.digits, 8)
+ }
+}