diff options
author | Tobias Brunner <tobias@strongswan.org> | 2013-09-04 09:47:23 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-09-04 10:01:46 +0200 |
commit | 0b47bb5377193520d8d95fe66d6d3644abaf2307 (patch) | |
tree | ceee37a49637e84461c3f95e668c58d5e3f4dcbf | |
parent | f17322dccb05b97dbbecf45a4aedc697be299253 (diff) | |
download | strongswan-0b47bb5377193520d8d95fe66d6d3644abaf2307.tar.bz2 strongswan-0b47bb5377193520d8d95fe66d6d3644abaf2307.tar.xz |
pubkey_speed: Add missing plugins
The pkcs1 plugin is required to test the gmp/gcrypt plugins. Likewise,
the pem plugin is required when testing the openssl plugin.
Fixes #401.
-rwxr-xr-x | scripts/pubkey_speed.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/pubkey_speed.sh b/scripts/pubkey_speed.sh index 193cd28ba..3352e04b4 100755 --- a/scripts/pubkey_speed.sh +++ b/scripts/pubkey_speed.sh @@ -32,7 +32,7 @@ function ecdsatestall { ecdsatest secp521r1 "$1" 500 } -rsatestall "gmp gcrypt pem" -rsatestall "gcrypt pem" -rsatestall "openssl" -ecdsatestall "openssl" +rsatestall "gmp gcrypt pem pkcs1" +rsatestall "gcrypt pem pkcs1" +rsatestall "openssl pem" +ecdsatestall "openssl pem" |