outaozhen bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
..
.travis.yml bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
.zuul.yml bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
LICENSE bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
README.md bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
browser.js bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
index.js bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
package.json bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos
test.js bb52c63d7d 库提交 %!s(int64=5) %!d(string=hai) anos

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