diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-03-23 09:18:55 (GMT) |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2009-03-23 09:18:55 (GMT) |
commit | e5fcad302d86d316390c6b0f62759a067313e8a9 (patch) | |
tree | c2afbf6f1066b6ce261f14341cf6d310e5595bc1 /tests/auto/qsslkey/keys/genkeys.sh | |
download | Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.zip Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.gz Qt-e5fcad302d86d316390c6b0f62759a067313e8a9.tar.bz2 |
Long live Qt 4.5!
Diffstat (limited to 'tests/auto/qsslkey/keys/genkeys.sh')
-rwxr-xr-x | tests/auto/qsslkey/keys/genkeys.sh | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/auto/qsslkey/keys/genkeys.sh b/tests/auto/qsslkey/keys/genkeys.sh new file mode 100755 index 0000000..ee36a6c --- /dev/null +++ b/tests/auto/qsslkey/keys/genkeys.sh @@ -0,0 +1,42 @@ +#!/bin/sh + +# This script generates cryptographic keys of different types. + +#--- RSA --------------------------------------------------------------------------- +# Note: RSA doesn't require the key size to be divisible by any particular number +for size in 40 511 512 999 1023 1024 2048 +do + echo -e "\ngenerating RSA private key to PEM file ..." + openssl genrsa -out rsa-pri-$size.pem $size + + echo -e "\ngenerating RSA private key to DER file ..." + openssl rsa -in rsa-pri-$size.pem -out rsa-pri-$size.der -outform DER + + echo -e "\ngenerating RSA public key to PEM file ..." + openssl rsa -in rsa-pri-$size.pem -pubout -out rsa-pub-$size.pem + + echo -e "\ngenerating RSA public key to DER file ..." + openssl rsa -in rsa-pri-$size.pem -pubout -out rsa-pub-$size.der -outform DER +done + +#--- DSA ---------------------------------------------------------------------------- +# Note: DSA requires the key size to be in interval [512, 1024] and be divisible by 64 +for size in 512 576 960 1024 +do + echo -e "\ngenerating DSA parameters to PEM file ..." + openssl dsaparam -out dsapar-$size.pem $size + + echo -e "\ngenerating DSA private key to PEM file ..." + openssl gendsa dsapar-$size.pem -out dsa-pri-$size.pem + + /bin/rm dsapar-$size.pem + + echo -e "\ngenerating DSA private key to DER file ..." + openssl dsa -in dsa-pri-$size.pem -out dsa-pri-$size.der -outform DER + + echo -e "\ngenerating DSA public key to PEM file ..." + openssl dsa -in dsa-pri-$size.pem -pubout -out dsa-pub-$size.pem + + echo -e "\ngenerating DSA public key to DER file ..." + openssl dsa -in dsa-pri-$size.pem -pubout -out dsa-pub-$size.der -outform DER +done |