UNPKG

lumber-forestadmin

Version:

Forest Admin for Lumber.

11 lines (7 loc) 266 B
const P = require('bluebird'); const crypto = require('crypto'); const randomBytes = P.promisify(crypto.randomBytes); function KeyGenerator() { this.generate = async () => randomBytes(48).then(buffer => buffer.toString('hex')); } module.exports = KeyGenerator;