Method: OpenSSL::X509::StoreContext#error
- Defined in:
- ossl_x509store.c
#error ⇒ Integer
606 607 608 609 610 611 612 613 614 |
# File 'ossl_x509store.c', line 606
static VALUE
ossl_x509stctx_get_err(VALUE self)
{
X509_STORE_CTX *ctx;
GetX509StCtx(self, ctx);
return INT2NUM(X509_STORE_CTX_get_error(ctx));
}
|