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 committed by David Mehren
parent 229eeb7022
commit ef5dfebb53
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

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();
}