62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
var assert = require('nanoassert')
|
|
|
|
const {
|
|
crypto_stream_chacha20_ietf,
|
|
crypto_stream_chacha20_ietf_KEYBYTES,
|
|
crypto_stream_chacha20_ietf_NONCEBYTES
|
|
} = require('./crypto_stream_chacha20')
|
|
|
|
const randombytes_SEEDBYTES = 32
|
|
|
|
var randombytes = (function () {
|
|
var QUOTA = 65536 // limit for QuotaExceededException
|
|
var crypto = globalThis.crypto || globalThis.msCrypto
|
|
|
|
function browserBytes (out, n) {
|
|
for (let i = 0; i < n; i += QUOTA) {
|
|
crypto.getRandomValues(new Uint8Array(out.buffer, i + out.byteOffset, Math.min(n - i, QUOTA)))
|
|
}
|
|
}
|
|
|
|
function nodeBytes (out, n) {
|
|
new Uint8Array(out.buffer, out.byteOffset, n).set(crypto.randomBytes(n))
|
|
}
|
|
|
|
function noImpl () {
|
|
throw new Error('No secure random number generator available')
|
|
}
|
|
|
|
if (crypto && crypto.getRandomValues) return browserBytes
|
|
|
|
if (require != null) {
|
|
// Node.js. Bust Browserify
|
|
crypto = require('cry' + 'pto')
|
|
if (crypto && crypto.randomBytes) return nodeBytes
|
|
}
|
|
|
|
return noImpl
|
|
})()
|
|
|
|
// Make non enumerable as this is an internal function
|
|
Object.defineProperty(module.exports, 'randombytes', {
|
|
value: randombytes
|
|
})
|
|
|
|
function randombytes_buf (out) {
|
|
assert(out, 'out must be given')
|
|
randombytes(out, out.byteLength)
|
|
}
|
|
|
|
function randombytes_buf_deterministic (buf, seed) {
|
|
const nonce = Buffer.alloc(crypto_stream_chacha20_ietf_NONCEBYTES)
|
|
nonce.write('LibsodiumDRG')
|
|
|
|
assert(randombytes_SEEDBYTES === crypto_stream_chacha20_ietf_KEYBYTES)
|
|
crypto_stream_chacha20_ietf(buf, nonce, seed)
|
|
}
|
|
|
|
module.exports = {
|
|
randombytes_buf,
|
|
randombytes_buf_deterministic,
|
|
randombytes_SEEDBYTES
|
|
} |