Method: OpenSSL::OCSP::BasicResponse#initialize
- Defined in:
- ossl_ocsp.c
#OpenSSL::OCSP::BasicResponse.new(*) ⇒ Object
Creates a new BasicResponse and ignores all arguments.
592 593 594 595 596 |
# File 'ossl_ocsp.c', line 592
static VALUE
ossl_ocspbres_initialize(int argc, VALUE *argv, VALUE self)
{
return self;
}
|