Update util.ts

This commit is contained in:
Andreas Brett 2021-10-10 21:59:23 +02:00 committed by GitHub
parent 13cf6891ac
commit 075535ba46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;