aboutsummaryrefslogtreecommitdiffstats
path: root/modules/secret
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2022-01-26 12:10:10 +0800
committerGitHub <noreply@github.com>2022-01-26 12:10:10 +0800
commit49dd9067535538771ef13623ed1dd9698a4a2151 (patch)
tree7a06ff053683e50d93ad50ce25585a13d54c41e5 /modules/secret
parent4889ab52de0b390bb6e96ad6a64ee082585b3d79 (diff)
downloadgitea-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 'modules/secret')
-rw-r--r--modules/secret/secret.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/secret/secret.go b/modules/secret/secret.go
index 6a5024b729..6b410f2381 100644
--- a/modules/secret/secret.go
+++ b/modules/secret/secret.go
@@ -24,7 +24,7 @@ func New() (string, error) {
// NewWithLength creates a new secret for a given length
func NewWithLength(length int64) (string, error) {
- return util.RandomString(length)
+ return util.CryptoRandomString(length)
}
// AesEncrypt encrypts text and given key with AES.