outaozhen bb52c63d7d 库提交 5 سال پیش
..
.travis.yml bb52c63d7d 库提交 5 سال پیش
.zuul.yml bb52c63d7d 库提交 5 سال پیش
LICENSE bb52c63d7d 库提交 5 سال پیش
README.md bb52c63d7d 库提交 5 سال پیش
browser.js bb52c63d7d 库提交 5 سال پیش
index.js bb52c63d7d 库提交 5 سال پیش
package.json bb52c63d7d 库提交 5 سال پیش
test.js bb52c63d7d 库提交 5 سال پیش

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