APIdock / Ruby
/
method

export

ruby latest stable - Class: OpenSSL ::PKey ::EC
export(p1 = v1, p2 = v2)
public

Outputs the EC key in PEM encoding. If cipher and pass_phrase are given they will be used to encrypt the key. cipher must be an OpenSSL::Cipher instance. Note that encryption will only be effective for a private key, public keys will always be encoded in plain text.

static VALUE ossl_ec_key_export(int argc, VALUE *argv, VALUE self)
{
 VALUE cipher, passwd;
 rb_scan_args(argc, argv, "02", &cipher, &passwd);
 return ossl_ec_key_to_string(self, cipher, passwd, EXPORT_PEM);
}

AltStyle によって変換されたページ (->オリジナル) /