APPLE 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
..
.travis.yml 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.zuul.yml 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
LICENSE 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
README.md 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
browser.js 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
index.js 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
package.json 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
test.js 323c2f1633 wesmiler 点什么广告 %!s(int64=3) %!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
});