Skip to content

Commit

Permalink
deprecate 1024 bit rsa keys for benchmarking
Browse files Browse the repository at this point in the history
  • Loading branch information
Momtchil Momtchev committed Sep 4, 2022
1 parent 5d6a0bf commit bdd42cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/crypto/rsa-encrypt-decrypt-throughput.js
Expand Up @@ -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 = {};

Expand Down

0 comments on commit bdd42cc

Please sign in to comment.