mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 00:16:15 -04:00
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const crypto = require('crypto');
|
||
|
const util = require('util');
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Promisified version of Node.js's crypto.hkdf.
|
||
|
*/
|
||
|
exports.hkdf = util.promisify(crypto.hkdf);
|
||
|
|
||
|
/**
|
||
|
* Promisified version of Node.js's crypto.randomBytes
|
||
|
*/
|
||
|
exports.randomBytes = util.promisify(crypto.randomBytes);
|