mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
9892fd92b6
* refactor: drop unused code * refactor: drop unused code
24 lines
334 B
Go
24 lines
334 B
Go
package domain
|
|
|
|
import "github.com/zitadel/zitadel/internal/crypto"
|
|
|
|
type MFAState int32
|
|
|
|
const (
|
|
MFAStateUnspecified MFAState = iota
|
|
MFAStateNotReady
|
|
MFAStateReady
|
|
MFAStateRemoved
|
|
|
|
stateCount
|
|
)
|
|
|
|
type MultifactorConfigs struct {
|
|
OTP OTPConfig
|
|
}
|
|
|
|
type OTPConfig struct {
|
|
Issuer string
|
|
CryptoMFA crypto.EncryptionAlgorithm
|
|
}
|