Andreas Brett
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/util.ts
|
|
@ -127,7 +127,7 @@ export function genSecret(length = 64) { |
|
|
|
let secret = ""; |
|
|
|
const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; |
|
|
|
const charsLength = chars.length; |
|
|
|
for ( let i = 0; i < 64; i++ ) { |
|
|
|
for ( let i = 0; i < length; i++ ) { |
|
|
|
secret += chars.charAt(getCryptoRandomInt(0, charsLength)); |
|
|
|
} |
|
|
|
return secret; |
|
|
|