UNPKG

@iexec/dataprotector

Version:

This product enables users to confidentially store data–such as mail address, documents, personal information ...

7 lines (5 loc) 208 B
import { hexlify } from '@ethersproject/bytes'; import { randomBytes } from '@ethersproject/random'; export function generateSecureUniqueId(length: number): string { return hexlify(randomBytes(length)); }