aboutsummaryrefslogtreecommitdiff
path: root/benchmark/crypto/rsa-sign-verify-throughput.js
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/crypto/rsa-sign-verify-throughput.js')
-rw-r--r--benchmark/crypto/rsa-sign-verify-throughput.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/crypto/rsa-sign-verify-throughput.js b/benchmark/crypto/rsa-sign-verify-throughput.js
index 3a0373b57d..4ea39d1eb6 100644
--- a/benchmark/crypto/rsa-sign-verify-throughput.js
+++ b/benchmark/crypto/rsa-sign-verify-throughput.js
@@ -9,7 +9,7 @@ const keylen_list = ['1024', '2048'];
const RSA_PublicPem = {};
const RSA_PrivatePem = {};
-keylen_list.forEach(function(key) {
+keylen_list.forEach((key) => {
RSA_PublicPem[key] =
fs.readFileSync(`${fixtures_keydir}/rsa_public_${key}.pem`);
RSA_PrivatePem[key] =