aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGOTOU Yuuzou <gotoyuzo@notwork.org>2003-07-10 18:46:11 +0000
committerGOTOU Yuuzou <gotoyuzo@notwork.org>2003-07-10 18:46:11 +0000
commit55ffd43e625ab05e54d9048de0b6d143fc6c4e8a (patch)
tree38753b180066a7447b2bede206e01b9ed7093313
parent028285614a99c7c81a39d156f605b08bb966cfcf (diff)
downloadruby-openssl-history-55ffd43e625ab05e54d9048de0b6d143fc6c4e8a.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog11
-rwxr-xr-xexamples/gen.sh5
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 16143c0..3205b98 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+Fri, 11 Jul 2003 03:44:28 +0900 -- GOTOU Yuuzou <gotoyuzo@notwork.org>
+ * examples/gen.sh: follows the changs of gen_*.rb.
+
Thu, 11 Jul 2003 02:33:59 +0900 -- NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* ossl_x509req.c: Add Request#signature_algorithm.
* ossl_x509crl.c: eX509CertError -> eX509CRLError.
@@ -15,10 +18,10 @@ Thu, 11 Jul 2003 02:23:04 +0900 -- NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* examples/ca/gen_cert.rb: Changed keyUsage bits of each cert type.
Thu, 10 Jul 2003 12:32:56 +0200 -- Michal Rokos <m.rokos@sh.cvut.cz>
- * ossl.c: Prototype for sk2ary
- * ocsp.c: Typo in ossl_ocspbres_add_status (sk_X509_pop_free -> sk_X509_EXTENSION_pop_free)
- * pkcs7.c: Added missed handling of flags in ossl_pkcs7_s_encrypt
- * x509cert.c: try to use obj2bio and bio2obj funcs
+ * ossl_ossl.c: Prototype for sk2ary
+ * ossl_ocsp.c: Typo in ossl_ocspbres_add_status (sk_X509_pop_free -> sk_X509_EXTENSION_pop_free)
+ * ossl_pkcs7.c: Added missed handling of flags in ossl_pkcs7_s_encrypt
+ * ossl_x509cert.c: try to use obj2bio and bio2obj funcs
Thu, 10 Jul 2003 04:56:38 +0900 -- GOTOU Yuuzou <gotoyuzo@notwork.org>
* ossl_pkcs7.c: PKCS7#encrypt(): use EVP_rc2_40_cbc() by default.
diff --git a/examples/gen.sh b/examples/gen.sh
index 0d8b4ca..9e0a5e0 100755
--- a/examples/gen.sh
+++ b/examples/gen.sh
@@ -3,7 +3,8 @@
rm -f *.pem
echo "===> Issueing CA certificate"
-ruby gen_ca_cert.rb
+dn="/C=JP/O=Does.Notwork.Org/OU=demoCA/CN=CA"
+ruby gen_ca_cert.rb "${dn}"
echo "===> Create Certificate Requests"
dn="/C=JP/O=Does.Notwork.Org/OU=demoCA/CN=subCA"
@@ -21,7 +22,7 @@ dn="/C=JP/O=Does.NotworkDoes.org/OU=demoCA/CN=baz"
echo "===> Issueing EE certificates"
ruby gen_cert.rb --type subca 1 1csr.pem
-ruby gen_cert.rb --type oscp 2 2csr.pem
+ruby gen_cert.rb --type ocsp 2 2csr.pem
ruby gen_cert.rb --type server 3 3csr.pem
ruby gen_cert.rb --type user 4 4csr.pem
ruby gen_cert.rb --type user 5 5csr.pem