Update util.ts

pull/641/head
Andreas Brett 3 years ago committed by GitHub
parent 13cf6891ac
commit 075535ba46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save