Method: OpenSSL::PKCS7::RecipientInfo#enc_key

Defined in:
ossl_pkcs7.c

#enc_keyObject



997
998
999
1000
1001
1002
1003
1004
1005
# File 'ossl_pkcs7.c', line 997

static VALUE
ossl_pkcs7ri_get_enc_key(VALUE self)
{
    PKCS7_RECIP_INFO *p7ri;

    GetPKCS7ri(self, p7ri);

    return asn1str_to_str(p7ri->enc_key);
}