icydns/src/utility/token.ts

6 lines
117 B
TypeScript
Raw Normal View History

2022-11-06 14:19:19 +00:00
import { randomBytes } from 'crypto';
2022-11-06 11:52:54 +00:00
export function getToken() {
2022-11-06 14:19:19 +00:00
return randomBytes(256 / 8).toString('hex');
2022-11-06 11:52:54 +00:00
}