Skip to content

Commit bdd42cc

Browse files
committed
deprecate 1024 bit rsa keys for benchmarking
1 parent 5d6a0bf commit bdd42cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/crypto/rsa-encrypt-decrypt-throughput.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const crypto = require('crypto');
55
const fs = require('fs');
66
const path = require('path');
77
const fixtures_keydir = path.resolve(__dirname, '../../test/fixtures/keys/');
8-
const keylen_list = ['1024', '2048', '4096'];
8+
const keylen_list = ['2048', '4096'];
99
const RSA_PublicPem = {};
1010
const RSA_PrivatePem = {};
1111

0 commit comments

Comments
 (0)