[ruby-cvs:62621] rhe:r55457 (trunk): openssl: add OpenSSL::OCSP::SingleResponse
rhe at ruby-lang.org
rhe at ruby-lang.org
Sun Jun 19 21:26:28 JST 2016
rhe 2016-06-19 21:26:27 +0900 (Sun, 19 Jun 2016)
New Revision: 55457
https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=55457
Log:
openssl: add OpenSSL::OCSP::SingleResponse
* ext/openssl/ossl_ocsp.c: Add OCSP::SingleResponse that represents an
OCSP SingleResponse structure. Also add two new methods #responses
and #find_response to OCSP::BasicResponse. A BasicResponse has one or
more SingleResponse. We have OCSP::BasicResponse#status that returns
them as an array of arrays, each containing the content of a
SingleResponse, but this is not useful. When validating an OCSP
response, we need to look into the each SingleResponse and check their
validity but it is not simple. For example, when validating for a
certificate 'cert', the code would be like:
# certid_target is an OpenSSL::OCSP::CertificateId for cert
basic = res.basic
result = basic.status.any? do |ary|
ary[0].cmp(certid_target) &&
ary[4] <= Time.now && (!ary[5] || Time.now <= ary[5])
end
Adding OCSP::SingleResponse at the same time allows exposing
OCSP_check_validity(). With this, the code above can be rewritten as:
basic = res.basic
single = basic.find_response(certid_target)
result = single.check_validity
* test/openssl/test_ocsp.rb: Test this.
Modified files:
trunk/ChangeLog
trunk/ext/openssl/ossl_ocsp.c
trunk/test/openssl/test_ocsp.rb
More information about the ruby-cvs
mailing list