2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// LDAPAuthenticationBackendConfiguration represents the configuration related to LDAP server.
|
2019-04-24 21:52:08 +00:00
|
|
|
type LDAPAuthenticationBackendConfiguration struct {
|
2020-01-21 20:56:44 +00:00
|
|
|
URL string `mapstructure:"url"`
|
|
|
|
SkipVerify bool `mapstructure:"skip_verify"`
|
|
|
|
BaseDN string `mapstructure:"base_dn"`
|
|
|
|
AdditionalUsersDN string `mapstructure:"additional_users_dn"`
|
|
|
|
UsersFilter string `mapstructure:"users_filter"`
|
|
|
|
AdditionalGroupsDN string `mapstructure:"additional_groups_dn"`
|
|
|
|
GroupsFilter string `mapstructure:"groups_filter"`
|
|
|
|
GroupNameAttribute string `mapstructure:"group_name_attribute"`
|
2020-03-15 07:10:25 +00:00
|
|
|
UsernameAttribute string `mapstructure:"username_attribute"`
|
2020-01-21 20:56:44 +00:00
|
|
|
MailAttribute string `mapstructure:"mail_attribute"`
|
|
|
|
User string `mapstructure:"user"`
|
|
|
|
Password string `mapstructure:"password"`
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// FileAuthenticationBackendConfiguration represents the configuration related to file-based backend.
|
2019-04-24 21:52:08 +00:00
|
|
|
type FileAuthenticationBackendConfiguration struct {
|
2020-04-11 03:54:18 +00:00
|
|
|
Path string `mapstructure:"path"`
|
|
|
|
Password *PasswordConfiguration `mapstructure:"password"`
|
2020-03-06 01:38:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// PasswordConfiguration represents the configuration related to password hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
type PasswordConfiguration struct {
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations int `mapstructure:"iterations"`
|
|
|
|
KeyLength int `mapstructure:"key_length"`
|
|
|
|
SaltLength int `mapstructure:"salt_length"`
|
|
|
|
Algorithm string `mapstrucutre:"algorithm"`
|
|
|
|
Memory int `mapstructure:"memory"`
|
|
|
|
Parallelism int `mapstructure:"parallelism"`
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// AuthenticationBackendConfiguration represents the configuration related to the authentication backend.
|
|
|
|
type AuthenticationBackendConfiguration struct {
|
|
|
|
DisableResetPassword bool `mapstructure:"disable_reset_password"`
|
|
|
|
RefreshInterval string `mapstructure:"refresh_interval"`
|
|
|
|
Ldap *LDAPAuthenticationBackendConfiguration `mapstructure:"ldap"`
|
|
|
|
File *FileAuthenticationBackendConfiguration `mapstructure:"file"`
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultPasswordConfiguration represents the default configuration related to Argon2id hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultPasswordConfiguration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 1,
|
|
|
|
KeyLength: 32,
|
|
|
|
SaltLength: 16,
|
|
|
|
Algorithm: "argon2id",
|
|
|
|
Memory: 1024,
|
|
|
|
Parallelism: 8,
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultCIPasswordConfiguration represents the default configuration related to Argon2id hashing for CI.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultCIPasswordConfiguration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 1,
|
|
|
|
KeyLength: 32,
|
|
|
|
SaltLength: 16,
|
|
|
|
Algorithm: "argon2id",
|
|
|
|
Memory: 128,
|
|
|
|
Parallelism: 8,
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultPasswordSHA512Configuration represents the default configuration related to SHA512 hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultPasswordSHA512Configuration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 50000,
|
|
|
|
SaltLength: 16,
|
|
|
|
Algorithm: "sha512",
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// DefaultLDAPAuthenticationBackendConfiguration represents the default LDAP config.
|
|
|
|
var DefaultLDAPAuthenticationBackendConfiguration = LDAPAuthenticationBackendConfiguration{
|
|
|
|
MailAttribute: "mail",
|
|
|
|
GroupNameAttribute: "cn",
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|