2019-04-24 21:52:08 +00:00
|
|
|
package authentication
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
)
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// Level is the type representing a level of authentication.
|
2019-04-24 21:52:08 +00:00
|
|
|
type Level int
|
|
|
|
|
|
|
|
const (
|
2020-04-20 21:03:38 +00:00
|
|
|
// NotAuthenticated if the user is not authenticated yet.
|
2019-04-24 21:52:08 +00:00
|
|
|
NotAuthenticated Level = iota
|
2020-04-20 21:03:38 +00:00
|
|
|
// OneFactor if the user has passed first factor only.
|
2019-04-24 21:52:08 +00:00
|
|
|
OneFactor Level = iota
|
2020-04-20 21:03:38 +00:00
|
|
|
// TwoFactor if the user has passed two factors.
|
2019-04-24 21:52:08 +00:00
|
|
|
TwoFactor Level = iota
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-04-20 21:03:38 +00:00
|
|
|
// TOTP Method using Time-Based One-Time Password applications like Google Authenticator.
|
2019-04-24 21:52:08 +00:00
|
|
|
TOTP = "totp"
|
2020-04-20 21:03:38 +00:00
|
|
|
// U2F Method using U2F devices like Yubikeys.
|
2019-04-24 21:52:08 +00:00
|
|
|
U2F = "u2f"
|
2020-04-20 21:03:38 +00:00
|
|
|
// Push Method using Duo application to receive push notifications.
|
2019-12-07 11:18:22 +00:00
|
|
|
Push = "mobile_push"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
2020-05-02 05:06:39 +00:00
|
|
|
// PossibleMethods is the set of all possible 2FA methods.
|
2019-12-07 11:18:22 +00:00
|
|
|
var PossibleMethods = []string{TOTP, U2F, Push}
|
2020-03-06 01:38:02 +00:00
|
|
|
|
2020-05-03 04:06:09 +00:00
|
|
|
// CryptAlgo the crypt representation of an algorithm used in the prefix of the hash.
|
|
|
|
type CryptAlgo string
|
|
|
|
|
2020-03-06 01:38:02 +00:00
|
|
|
const (
|
2020-04-20 21:03:38 +00:00
|
|
|
// HashingAlgorithmArgon2id Argon2id hash identifier.
|
2020-05-06 00:52:06 +00:00
|
|
|
HashingAlgorithmArgon2id CryptAlgo = argon2id
|
2020-04-20 21:03:38 +00:00
|
|
|
// HashingAlgorithmSHA512 SHA512 hash identifier.
|
2020-05-03 04:06:09 +00:00
|
|
|
HashingAlgorithmSHA512 CryptAlgo = "6"
|
2020-03-06 01:38:02 +00:00
|
|
|
)
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// These are the default values from the upstream crypt module we use them to for GetInt
|
|
|
|
// and they need to be checked when updating github.com/simia-tech/crypt.
|
2020-03-06 01:38:02 +00:00
|
|
|
const (
|
|
|
|
HashingDefaultArgon2idTime = 1
|
|
|
|
HashingDefaultArgon2idMemory = 32 * 1024
|
|
|
|
HashingDefaultArgon2idParallelism = 4
|
|
|
|
HashingDefaultArgon2idKeyLength = 32
|
|
|
|
HashingDefaultSHA512Iterations = 5000
|
|
|
|
)
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// HashingPossibleSaltCharacters represents valid hashing runes.
|
2020-03-06 01:38:02 +00:00
|
|
|
var HashingPossibleSaltCharacters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/")
|
2020-05-02 16:20:40 +00:00
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// ErrUserNotFound indicates the user wasn't found in the authentication backend.
|
|
|
|
var ErrUserNotFound = errors.New("user not found")
|
|
|
|
|
2020-05-06 00:52:06 +00:00
|
|
|
const argon2id = "argon2id"
|
2020-05-02 16:20:40 +00:00
|
|
|
const sha512 = "sha512"
|
|
|
|
|
|
|
|
const testPassword = "my;secure*password"
|