diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-21 18:25:25 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-21 18:25:25 +0000 |
commit | 11784c2c4b735f77a503c2e7149ba069caf1cf56 (patch) | |
tree | f8f79823293323ca6bc8373cec768590b5960452 /test/openssl/utils.rb | |
parent | 495ff23436d632b21ee103ad0aab392254e55c5e (diff) |
* test_x509crl.rb (test_basic): add test for CRL issuer.
* test_x509store.rb: test for OpenSSL::X509::Store
* utils.rb (issue_crl): should set issuer's subject.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6381 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/openssl/utils.rb')
-rw-r--r-- | test/openssl/utils.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/openssl/utils.rb b/test/openssl/utils.rb index 6d95b787a7..c923705b86 100644 --- a/test/openssl/utils.rb +++ b/test/openssl/utils.rb @@ -99,6 +99,7 @@ Q1VB8qkJN7rA7/2HrCR3gTsWNb1YhAsnFsoeRscC+LxXoXi9OAIUBG98h4tilg6S def issue_crl(revoke_info, serial, lastup, nextup, extensions, issuer, issuer_key, digest) crl = OpenSSL::X509::CRL.new + crl.issuer = issuer.subject crl.version = 1 crl.last_update = lastup crl.next_update = nextup |