ate-auth 1.9.0

Represents a standardized data model and API for authenticating an ATE chain-of-trust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::*;
#[allow(unused_imports)]
use tracing::{debug, error, info, instrument, span, trace, warn, Level};

use ate::prelude::*;

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct UserRecovery {
    pub email: String,
    pub google_auth: String,
    pub sudo_secret: String,
    pub qr_code: String,
    pub login_secret: EncryptKey,
}