From bdd42cc4ef1a7b2434450a4bd64daf8dc7cc8734 Mon Sep 17 00:00:00 2001 From: Momtchil Momtchev Date: Sun, 4 Sep 2022 14:14:27 +0000 Subject: [PATCH] deprecate 1024 bit rsa keys for benchmarking --- benchmark/crypto/rsa-encrypt-decrypt-throughput.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/crypto/rsa-encrypt-decrypt-throughput.js b/benchmark/crypto/rsa-encrypt-decrypt-throughput.js index 9791160263c9ec..b5afe6166c9026 100644 --- a/benchmark/crypto/rsa-encrypt-decrypt-throughput.js +++ b/benchmark/crypto/rsa-encrypt-decrypt-throughput.js @@ -5,7 +5,7 @@ const crypto = require('crypto'); const fs = require('fs'); const path = require('path'); const fixtures_keydir = path.resolve(__dirname, '../../test/fixtures/keys/'); -const keylen_list = ['1024', '2048', '4096']; +const keylen_list = ['2048', '4096']; const RSA_PublicPem = {}; const RSA_PrivatePem = {};