mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
ad8e844af6
Allow users to configure the TOTP Algorithm and Digits. This should be used with caution as many TOTP applications do not support it. Some will also fail to notify the user that there is an issue. i.e. if the algorithm in the QR code is sha512, they continue to generate one time passwords with sha1. In addition this drastically refactors TOTP in general to be more user friendly by not forcing them to register a new device if the administrator changes the period (or algorithm). Fixes #1226.
11 lines
287 B
Go
11 lines
287 B
Go
package models
|
|
|
|
// U2FDevice represents a users U2F device row in the database.
|
|
type U2FDevice struct {
|
|
ID int `db:"id"`
|
|
Username string `db:"username"`
|
|
Description string `db:"description"`
|
|
KeyHandle []byte `db:"key_handle"`
|
|
PublicKey []byte `db:"public_key"`
|
|
}
|