showing results for - "secure random nodejs"
Maria
06 Sep 2019
1// Synchronous
2const buf = crypto.randomBytes(256);
3console.log(
4  `${buf.length} bytes of random data: ${buf.toString('hex')}`);
5