f336097b6a
Fixes #8
41 lines
1011 B
JavaScript
41 lines
1011 B
JavaScript
var assert = require('nanoassert')
|
|
var randombytes = (function () {
|
|
var QUOTA = 65536 // limit for QuotaExceededException
|
|
var crypto = typeof global !== 'undefined' ? crypto = (global.crypto || global.msCrypto) : null
|
|
|
|
function browserBytes (out, n) {
|
|
for (var i = 0; i < n; i += QUOTA) {
|
|
crypto.getRandomValues(out.subarray(i, i + Math.min(n - i, QUOTA)))
|
|
}
|
|
}
|
|
|
|
function nodeBytes (out, n) {
|
|
out.set(crypto.randomBytes(n))
|
|
}
|
|
|
|
function noImpl () {
|
|
throw new Error('No secure random number generator available')
|
|
}
|
|
|
|
if (crypto && crypto.getRandomValues) {
|
|
return browserBytes
|
|
} else if (typeof require !== 'undefined') {
|
|
// Node.js.
|
|
crypto = require('cry' + 'pto');
|
|
if (crypto && crypto.randomBytes) {
|
|
return nodeBytes
|
|
}
|
|
}
|
|
|
|
return noImpl
|
|
})()
|
|
|
|
Object.defineProperty(module.exports, 'randombytes', {
|
|
value: randombytes
|
|
})
|
|
|
|
module.exports.randombytes_buf = function (out) {
|
|
assert(out, 'out must be given')
|
|
randombytes(out, out.length)
|
|
}
|