mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3a88ca95b8
A window of 1 means the token is checked against current time slot T as well as at time slot T-1 and T+1. A time slot is 30 seconds by default in Authelia.
11 lines
223 B
TypeScript
11 lines
223 B
TypeScript
|
|
export interface TOTPSecret {
|
|
ascii: string;
|
|
hex: string;
|
|
base32: string;
|
|
qr_code_ascii: string;
|
|
qr_code_hex: string;
|
|
qr_code_base32: string;
|
|
google_auth_qr: string;
|
|
otpauth_url: string;
|
|
} |