-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsession_reverification.go
47 lines (37 loc) · 1.42 KB
/
session_reverification.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package clerk
type SessionReverificationLevel string
const (
// SessionReverificationLevelFirstFactor uses first factor methods
// e.g. email/phone code, password
SessionReverificationLevelFirstFactor SessionReverificationLevel = "first_factor"
// SessionReverificationLevelSecondFactor uses second factor methods, if available
// e.g. authenticator app, backup code
SessionReverificationLevelSecondFactor SessionReverificationLevel = "second_factor"
// SessionReverificationLevelMultiFactor requires both first and second factor
// methods, if available
SessionReverificationLevelMultiFactor SessionReverificationLevel = "multi_factor"
)
type SessionReverificationPolicy struct {
// AfterMinutes is the session age threshold before reverification
AfterMinutes int64
// Level specifies which verification factors are required
Level SessionReverificationLevel
}
var (
SessionReverificationStrictMFA = SessionReverificationPolicy{
AfterMinutes: 10,
Level: SessionReverificationLevelMultiFactor,
}
SessionReverificationStrict = SessionReverificationPolicy{
AfterMinutes: 10,
Level: SessionReverificationLevelSecondFactor,
}
SessionReverificationModerate = SessionReverificationPolicy{
AfterMinutes: 60,
Level: SessionReverificationLevelSecondFactor,
}
SessionReverificationLax = SessionReverificationPolicy{
AfterMinutes: 1_440,
Level: SessionReverificationLevelSecondFactor,
}
)