method
copy_nonce
v1_9_2_180 -
Show latest stable
- Class:
OpenSSL::OCSP::BasicResponse
copy_nonce(p1)public
No documentation available.
static VALUE
ossl_ocspbres_copy_nonce(VALUE self, VALUE request)
{
OCSP_BASICRESP *bs;
OCSP_REQUEST *req;
int ret;
GetOCSPBasicRes(self, bs);
SafeGetOCSPReq(request, req);
ret = OCSP_copy_nonce(bs, req);
return INT2NUM(ret);
}