Flowdock
method

current_cert

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: StoreContext
current_cert() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
ossl_x509stctx_get_curr_cert(VALUE self)
{
    X509_STORE_CTX *ctx;

    GetX509StCtx(self, ctx);

    return ossl_x509_new(X509_STORE_CTX_get_current_cert(ctx));
}
Register or log in to add new notes.