選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
nitowa 1dae68b1c7 init 2年前
..
.travis.yml init 2年前
.zuul.yml init 2年前
LICENSE init 2年前
README.md init 2年前
browser.js init 2年前
index.js init 2年前
package.json init 2年前
test.js init 2年前

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