summaryrefslogtreecommitdiff
path: root/benchmark/crypto/aes-gcm-throughput.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/crypto/aes-gcm-throughput.js')
-rw-r--r--benchmark/crypto/aes-gcm-throughput.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/crypto/aes-gcm-throughput.js b/benchmark/crypto/aes-gcm-throughput.js
index 8d4eba54cd..fc379b21b7 100644
--- a/benchmark/crypto/aes-gcm-throughput.js
+++ b/benchmark/crypto/aes-gcm-throughput.js
@@ -31,7 +31,7 @@ function AEAD_Bench(cipher, message, associate_data, key, iv, n, len) {
var bob = crypto.createDecipheriv(cipher, key, iv);
bob.setAuthTag(tag);
bob.setAAD(associate_data);
- var clear = bob.update(enc);
+ bob.update(enc);
bob.final();
}