method
negative?
v2_6_3 -
Show latest stable
- Class:
OpenSSL::BN
negative?()public
No documentation available.
static VALUE
ossl_bn_is_negative(VALUE self)
{
BIGNUM *bn;
GetBN(self, bn);
if (BN_is_zero(bn))
return Qfalse;
return BN_is_negative(bn) ? Qtrue : Qfalse;
}