private?()
public
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)
{
DSA *dsa;
GetDSA(self, dsa);
return DSA_PRIVATE(self, dsa) ? Qtrue : Qfalse;
}