bw-hspc-contest-env/extension/bwcontest/src/getNonce.ts

9 lines
252 B
TypeScript
Raw Normal View History

2023-05-06 00:01:27 -04:00
export function getNonce() {
let text = '';
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
for (let i = 0; i < 32; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}