mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 18:33:08 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
21 lines
562 B
TypeScript
21 lines
562 B
TypeScript
import * as crypto from 'node:crypto';
|
|
|
|
const L_CHARS = '0123456789abcdefghijklmnopqrstuvwxyz';
|
|
const LU_CHARS = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
|
|
|
export function secureRndstr(length = 32, useLU = true): string {
|
|
const chars = useLU ? LU_CHARS : L_CHARS;
|
|
const chars_len = chars.length;
|
|
|
|
let str = '';
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
let rand = Math.floor((crypto.randomBytes(1).readUInt8(0) / 0xFF) * chars_len);
|
|
if (rand === chars_len) {
|
|
rand = chars_len - 1;
|
|
}
|
|
str += chars.charAt(rand);
|
|
}
|
|
|
|
return str;
|
|
}
|