All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.uuid.lib.rng.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
// 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);
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy