This commit is contained in:
Christian Bundy 2023-11-27 02:01:51 +13:00 committed by GitHub
commit caac9bfd45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ module.exports.crypto_generichash = function (output, input, key) {
blake2b(output.length, key).update(input).final(output) blake2b(output.length, key).update(input).final(output)
} }
module.exports.crypto_generichash_ready = blake2b.ready module.exports.crypto_generichash_wasm_ready = blake2b.ready
module.exports.crypto_generichash_batch = function (output, inputArray, key) { module.exports.crypto_generichash_batch = function (output, inputArray, key) {
var ctx = blake2b(output.length, key) var ctx = blake2b(output.length, key)