Method: OpenSSL::PKCS7#certificates
- Defined in:
- ossl_pkcs7.c
#certificates ⇒ Object
710 711 712 713 714 |
# File 'ossl_pkcs7.c', line 710
static VALUE
ossl_pkcs7_get_certificates(VALUE self)
{
return ossl_x509_sk2ary(pkcs7_get_certs(self));
}
|