Method: OpenSSL::PKey::EC#private_key
- Defined in:
- ossl_pkey_ec.c
#private_key ⇒ OpenSSL::BN
See the OpenSSL documentation for EC_KEY_get0_private_key()
310 311 312 313 314 315 316 317 318 319 320 |
# File 'ossl_pkey_ec.c', line 310
static VALUE ossl_ec_key_get_private_key(VALUE self)
{
EC_KEY *ec;
const BIGNUM *bn;
GetEC(self, ec);
if ((bn = EC_KEY_get0_private_key(ec)) == NULL)
return Qnil;
return ossl_bn_new(bn);
}
|