private?()
Indicates whether this DSA instance has a private key associated with it or not. The private key may be retrieved with DSA#private_key.
static VALUE ossl_dsa_is_private(VALUE self) { EVP_PKEY *pkey; GetPKeyDSA(self, pkey); return (DSA_PRIVATE(self, pkey->pkey.dsa)) ? Qtrue : Qfalse; }