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 0cb3268951..8264f53547 100644
--- a/benchmark/crypto/aes-gcm-throughput.js
+++ b/benchmark/crypto/aes-gcm-throughput.js
@@ -1,7 +1,7 @@
'use strict';
var common = require('../common.js');
var crypto = require('crypto');
-var keylen = {'aes-128-gcm': 16, 'aes-192-gcm': 24, 'aes-256-gcm': 32};
+var keylen = { 'aes-128-gcm': 16, 'aes-192-gcm': 24, 'aes-256-gcm': 32 };
var bench = common.createBenchmark(main, {
n: [500],
cipher: ['aes-128-gcm', 'aes-192-gcm', 'aes-256-gcm'],