Front end of the Slack clone application.
jpsp91 07dd8af64f root page set 6 лет назад
..
.travis.yml root page set 6 лет назад
.zuul.yml root page set 6 лет назад
LICENSE root page set 6 лет назад
README.md root page set 6 лет назад
browser.js root page set 6 лет назад
index.js root page set 6 лет назад
package.json root page set 6 лет назад
test.js root page set 6 лет назад

README.md

randombytes

Version Build Status

randombytes from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomBytes = require('randombytes');
randomBytes(16);//get 16 random bytes
randomBytes(16, function (err, resp) {
  // resp is 16 random bytes
});