Commit pre-generated test_verify certs
authorViktor Dukhovni <openssl-users@dukhovni.org>
Fri, 15 Jan 2016 21:12:42 +0000 (16:12 -0500)
committerViktor Dukhovni <openssl-users@dukhovni.org>
Thu, 21 Jan 2016 00:03:14 +0000 (19:03 -0500)
commit3d6e91c68051ab94400cf4281f95ffef29a7a4a3
tree39fe607080cbf4868a82d685d5825a41e721893f
parent8478351737d7edac0f82dd4fc7f2caff994ce93d
Commit pre-generated test_verify certs

These can be re-generated via:

        cd test/certs; ./setup.sh

if need be.  The keys are all RSA 2048-bit keys, but it is possible
to change that via environment variables.

    cd test/certs
    rm -f *-key.pem *-key2.pem
    OPENSSL_KEYALG=rsa OPENSSL_KEYBITS=3072 ./setup.sh

    cd test/certs
    rm -f *-key.pem *-key2.pem
    OPENSSL_KEYALG=ecdsa OPENSSL_KEYBITS=secp384r1 ./setup.sh

    ...

Keys are re-used if already present, so the environment variables
are only used when generating any keys that are missing.  Hence
the "rm -f"

Reviewed-by: Richard Levitte <levitte@openssl.org>
30 files changed:
test/certs/ca+clientAuth.pem [new file with mode: 0644]
test/certs/ca+serverAuth.pem [new file with mode: 0644]
test/certs/ca-cert.pem [new file with mode: 0644]
test/certs/ca-cert2.pem [new file with mode: 0644]
test/certs/ca-expired.pem [new file with mode: 0644]
test/certs/ca-key.pem [new file with mode: 0644]
test/certs/ca-key2.pem [new file with mode: 0644]
test/certs/ca-name2.pem [new file with mode: 0644]
test/certs/ca-nonca.pem [new file with mode: 0644]
test/certs/ca-root2.pem [new file with mode: 0644]
test/certs/ca-serverAuth.pem [new file with mode: 0644]
test/certs/ee+clientAuth.pem [new file with mode: 0644]
test/certs/ee+serverAuth.pem [new file with mode: 0644]
test/certs/ee-cert.pem [new file with mode: 0644]
test/certs/ee-cert2.pem [new file with mode: 0644]
test/certs/ee-client.pem [new file with mode: 0644]
test/certs/ee-clientAuth.pem [new file with mode: 0644]
test/certs/ee-expired.pem [new file with mode: 0644]
test/certs/ee-key.pem [new file with mode: 0644]
test/certs/ee-name2.pem [new file with mode: 0644]
test/certs/ee-serverAuth.pem [new file with mode: 0644]
test/certs/root+clientAuth.pem [new file with mode: 0644]
test/certs/root+serverAuth.pem [new file with mode: 0644]
test/certs/root-cert.pem [new file with mode: 0644]
test/certs/root-cert2.pem [new file with mode: 0644]
test/certs/root-key.pem [new file with mode: 0644]
test/certs/root-key2.pem [new file with mode: 0644]
test/certs/root-name2.pem [new file with mode: 0644]
test/certs/root-nonca.pem [new file with mode: 0644]
test/certs/root-serverAuth.pem [new file with mode: 0644]