1
0
mirror of https://gitea.com/actions/setup-java.git synced 2025-04-30 12:37:04 +08:00

9 lines
246 B
JavaScript
Raw Normal View History

2019-07-10 10:54:25 -04:00
// Unique ID creation requires a high quality random # generator. In node.js
// this is pretty straight-forward - we use the crypto API.
var crypto = require('crypto');
module.exports = function nodeRNG() {
return crypto.randomBytes(16);
};