Flowdock
private?() public

No documentation

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

Hide source
static VALUE
ossl_dh_is_private(VALUE self)
{
    EVP_PKEY *pkey;

    GetPKeyDH(self, pkey);
        
    return (DH_PRIVATE(pkey->pkey.dh)) ? Qtrue : Qfalse;
}
Register or log in to add new notes.