1c1b0ed88813cd261c803a4d3389bd42af51ca07afc7dcfc01cb97b041e619ab8a5a49b59b71b1ebf1ba81be5bcd493b9f2fba039ac8d75e216ff30aec4ae7 246 B

12345678
  1. // Unique ID creation requires a high quality random # generator. In node.js
  2. // this is pretty straight-forward - we use the crypto API.
  3. var crypto = require('crypto');
  4. module.exports = function nodeRNG() {
  5. return crypto.randomBytes(16);
  6. };