2021-11-23 09:45:38 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
// TOTPConfiguration represents a users TOTP configuration row in the database.
|
|
|
|
type TOTPConfiguration struct {
|
|
|
|
ID int `db:"id"`
|
|
|
|
Username string `db:"username"`
|
|
|
|
Algorithm string `db:"algorithm"`
|
|
|
|
Digits int `db:"digits"`
|
|
|
|
Period uint64 `db:"totp_period"`
|
2021-11-25 01:56:58 +00:00
|
|
|
Secret []byte `db:"secret"`
|
2021-11-23 09:45:38 +00:00
|
|
|
}
|