signed?()
public
Returns true if the request is signed, false otherwise.
Note that the validity of the signature is not checked. Use #verify to verify that.
static VALUE
ossl_ocspreq_signed_p(VALUE self)
{
OCSP_REQUEST *req;
GetOCSPReq(self, req);
return OCSP_request_is_signed(req) ? Qtrue : Qfalse;
}