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

README.md

randomfill

Version

randomfill from node that works in the browser. In node you just get crypto.randomBytes, but in the browser it uses .crypto/msCrypto.getRandomValues

var randomFill = require('randomfill');
var buf
randomFill.randomFillSync(16);//get 16 random bytes
randomFill.randomFill(16, function (err, resp) {
  // resp is 16 random bytes
});