Method: OpenSSL::PKCS7::SignerInfo#issuer

Defined in:
ossl_pkcs7.c

#issuerObject



957
958
959
960
961
962
963
964
965
# File 'ossl_pkcs7.c', line 957

static VALUE
ossl_pkcs7si_get_issuer(VALUE self)
{
    PKCS7_SIGNER_INFO *p7si;

    GetPKCS7si(self, p7si);

    return ossl_x509name_new(p7si->issuer_and_serial->issuer);
}