2020-05-02 16:20:40 +00:00
|
|
|
package schema
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2020-05-06 00:52:06 +00:00
|
|
|
const argon2id = "argon2id"
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// ProfileRefreshDisabled represents a value for refresh_interval that disables the check entirely.
|
|
|
|
const ProfileRefreshDisabled = "disable"
|
|
|
|
|
|
|
|
// ProfileRefreshAlways represents a value for refresh_interval that's the same as 0ms.
|
|
|
|
const ProfileRefreshAlways = "always"
|
|
|
|
|
|
|
|
// RefreshIntervalDefault represents the default value of refresh_interval.
|
|
|
|
const RefreshIntervalDefault = "5m"
|
|
|
|
|
|
|
|
// RefreshIntervalAlways represents the duration value refresh interval should have if set to always.
|
|
|
|
const RefreshIntervalAlways = 0 * time.Millisecond
|
2020-11-27 09:59:22 +00:00
|
|
|
|
|
|
|
// LDAPImplementationCustom is the string for the custom LDAP implementation.
|
|
|
|
const LDAPImplementationCustom = "custom"
|
|
|
|
|
|
|
|
// LDAPImplementationActiveDirectory is the string for the Active Directory LDAP implementation.
|
|
|
|
const LDAPImplementationActiveDirectory = "activedirectory"
|
2021-12-01 12:11:29 +00:00
|
|
|
|
|
|
|
// TOTP Algorithm.
|
|
|
|
const (
|
|
|
|
TOTPAlgorithmSHA1 = "SHA1"
|
|
|
|
TOTPAlgorithmSHA256 = "SHA256"
|
|
|
|
TOTPAlgorithmSHA512 = "SHA512"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// TOTPPossibleAlgorithms is a list of valid TOTP Algorithms.
|
|
|
|
TOTPPossibleAlgorithms = []string{TOTPAlgorithmSHA1, TOTPAlgorithmSHA256, TOTPAlgorithmSHA512}
|
|
|
|
)
|