export const prerender = true;
Generate UUIDs, hex tokens, or random base64 strings.
Are these UUIDs cryptographically secure?
Yes. UUID v4 is generated using the browser's crypto.getRandomValues, which is cryptographically secure.
What is the difference between UUID, Hex, and Base64?
UUID v4 is a 128-bit standard format. Hex is raw random bytes in hexadecimal. Base64 is the same bytes encoded for compactness.
Can I use these tokens in production?
UUID v4 tokens are safe for production. For Hex and Base64, the security depends on the byte length you choose.