pad.libre-service.eu-etherpad/src/node/utils/randomstring.js
2014-01-24 01:19:14 +01:00

11 lines
275 B
JavaScript

/**
* Generates a random String with the given length. Is needed to generate the Author, Group, readonly, session Ids
*/
var crypto = require('crypto');
var randomString = function(len)
{
return crypto.randomBytes(len).toString('hex')
};
module.exports = randomString;