diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2022-01-26 12:10:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-26 12:10:10 +0800 |
commit | 49dd9067535538771ef13623ed1dd9698a4a2151 (patch) | |
tree | 7a06ff053683e50d93ad50ce25585a13d54c41e5 /models/user | |
parent | 4889ab52de0b390bb6e96ad6a64ee082585b3d79 (diff) | |
download | gitea-49dd9067535538771ef13623ed1dd9698a4a2151.tar.gz gitea-49dd9067535538771ef13623ed1dd9698a4a2151.zip |
Use base32 for 2FA scratch token (#18384)
* Use base32 for 2FA scratch token
* rename Secure* to Crypto*, add comments
Diffstat (limited to 'models/user')
-rw-r--r-- | models/user/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/user/user.go b/models/user/user.go index 57a7fcadfa..38352fe5e2 100644 --- a/models/user/user.go +++ b/models/user/user.go @@ -533,7 +533,7 @@ const SaltByteLength = 16 // GetUserSalt returns a random user salt token. func GetUserSalt() (string, error) { - rBytes, err := util.RandomBytes(SaltByteLength) + rBytes, err := util.CryptoRandomBytes(SaltByteLength) if err != nil { return "", err } |