From 51e11143e59140afccf9d4dcc35c5f18501e277c Mon Sep 17 00:00:00 2001 From: Mathias Buus Date: Fri, 17 Nov 2017 10:43:01 +0100 Subject: [PATCH] fix siphash24 not having ready --- crypto_shorthash.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crypto_shorthash.js b/crypto_shorthash.js index 5563f89..9dba716 100644 --- a/crypto_shorthash.js +++ b/crypto_shorthash.js @@ -4,14 +4,9 @@ exports.crypto_shorthash_PRIMITIVE = 'siphash24' exports.crypto_shorthash_BYTES = siphash.BYTES exports.crypto_shorthash_KEYBYTES = siphash.KEYBYTES exports.crypto_shorthash_WASM_SUPPORTED = siphash.WASM_SUPPORTED -exports.crypto_shorthash_WASM_LOADED = siphash.WASM_LOADED exports.crypto_shorthash_ready = siphash.ready exports.crypto_shorthash = shorthash -siphash.ready(function () { - exports.crypto_shorthash_WASM_LOADED = siphash.WASM_LOADED -}) - function shorthash (out, data, key, noAssert) { siphash(data, key, out, noAssert) }