public?()
public
Returns whether this EC instance has a public key. The public key
(EC::Point) can be retrieved with EC#public_key.
static VALUE ossl_ec_key_is_public(VALUE self)
{
EC_KEY *ec;
GetEC(self, ec);
return EC_KEY_get0_public_key(ec) ? Qtrue : Qfalse;
}