From: Tobias Brunner Date: Wed, 4 Sep 2013 07:47:23 +0000 (+0200) Subject: pubkey_speed: Add missing plugins X-Git-Tag: 5.1.1dr3~20 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b47bb5377193520d8d95fe66d6d3644abaf2307;p=thirdparty%2Fstrongswan.git 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. --- diff --git a/scripts/pubkey_speed.sh b/scripts/pubkey_speed.sh index 193cd28ba4..3352e04b4b 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"