Нет описания

FFIB: 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
..
.travis.yml 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
.zuul.yml 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
LICENSE 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
README.md 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
browser.js 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
index.js 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
package.json 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
test.js 11e3a9652a first лет %!s(int64=7): %!d(string=назад)

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
});