Method: OpenSSL::PKCS7::SignerInfo#issuer
- Defined in:
- ossl_pkcs7.c
#issuer ⇒ Object
918 919 920 921 922 923 924 925 926 |
# File 'ossl_pkcs7.c', line 918 static VALUE ossl_pkcs7si_get_issuer(VALUE self) { PKCS7_SIGNER_INFO *p7si; GetPKCS7si(self, p7si); return ossl_x509name_new(p7si->issuer_and_serial->issuer); } |