Method: OpenSSL::OCSP::Response#status_string
- Defined in:
- ossl_ocsp.c
#status_string ⇒ Object
345 346 347 348 349 350 351 352 353 354 355 |
# File 'ossl_ocsp.c', line 345 static VALUE ossl_ocspres_status_string(VALUE self) { OCSP_RESPONSE *res; int st; GetOCSPRes(self, res); st = OCSP_response_status(res); return rb_str_new2(OCSP_response_status_str(st)); } |