Method: OpenSSL::PKey::DH#export

Defined in:
ossl_pkey_dh.c

#exportaString #to_pemaString #to_saString Also known as: to_pem, to_s

Encodes this DH to its PEM encoding. Note that any existing per-session public/private keys will not get encoded, just the Diffie-Hellman parameters will be encoded.

Overloads:

  • #exportaString

    Returns:

    • (aString)
  • #to_pemaString

    Returns:

    • (aString)
  • #to_saString

    Returns:

    • (aString)


328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# File 'ossl_pkey_dh.c', line 328

static VALUE
ossl_dh_export(VALUE self)
{
    DH *dh;
    BIO *out;
    VALUE str;

    GetDH(self, dh);
    if (!(out = BIO_new(BIO_s_mem()))) {
	ossl_raise(eDHError, NULL);
    }
    if (!PEM_write_bio_DHparams(out, dh)) {
	BIO_free(out);
	ossl_raise(eDHError, NULL);
    }
    str = ossl_membio2str(out);

    return str;
}