fix(publicId): generate 128-bit instead of 128-byte value

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-06-14 08:45:48 +02:00
parent 10f92de94e
commit b636afc4bd

View file

@ -12,6 +12,6 @@ import { randomBytes } from 'crypto';
* This is a randomly generated 128-bit value encoded with base32-encode using the crockford variant and converted to lowercase.
*/
export function generatePublicId(): string {
const randomId = randomBytes(128);
const randomId = randomBytes(16);
return base32Encode(randomId, 'Crockford').toLowerCase();
}