Corrections.
authorBodo Möller <bodo@openssl.org>
Mon, 13 Mar 2000 19:35:37 +0000 (19:35 +0000)
committerBodo Möller <bodo@openssl.org>
Mon, 13 Mar 2000 19:35:37 +0000 (19:35 +0000)
In testss, use MD5 as digest algorithm so that the resulting
certificates can be used for testssl with RSA.

test/Makefile.ssl
test/testss
test/testssl

index 02945de5f9697b51c31889d31bed81a5bccd4f02..8cd3be0eaa2d23daff9d56cb90592e3b7f4fd21b 100644 (file)
@@ -206,7 +206,7 @@ test_gen:
        @echo "Generate and verify a certificate request"
        @sh ./testgen
 
-test_ss keyU.ss certU.ss certCA.ss:
+test_ss keyU.ss certU.ss certCA.ss: testss
        @echo "Generate and certify a test certificate"
        @sh ./testss
 
index fc27c83fa762db069ef9448cba066234cb8443e3..bcc4f5295e7bc1dc1911b2f605b813b98eea209f 100644 (file)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-digest='-mdc2'
+digest='-md5'
 reqcmd="../apps/openssl req"
 x509cmd="../apps/openssl x509 $digest"
 verifycmd="../apps/openssl verify"
index 413a14e4cb0e26269029409b11f135b398901046..9fc9bb2de790f877d896d694bc54e45c51389d37 100644 (file)
@@ -10,7 +10,7 @@ if [ "$2" = "" ]; then
 else
   cert="$2"
 fi
-ssltest="./ssltest -key $1 -cert $2 -c_key $1 -c_cert $2"
+ssltest="./ssltest -key $key -cert $cert -c_key $key -c_cert $cert"
 
 if ../apps/openssl x509 -in $cert -text -noout | fgrep 'DSA Public Key'; then
   dsa_cert=YES