PKCS7_SIGNER_INFO_get0_algs

Return non-owning pointers to a signer info's key and digest/signature algorithms.

Synopsis

Declared in <openssl/pkcs7.h>

void
PKCS7_SIGNER_INFO_get0_algs(
    PKCS7_SIGNER_INFO* si,
    EVP_PKEY** pk,
    X509_ALGOR** pdig,
    X509_ALGOR** psig);

Return Value

non-owning pointers to a signer info's key and digest/signature algorithms.

Parameters

NameDescription
siSigner info to query.
pkOptional destination for the signing private key pointer, or NULL.
pdigOptional destination for the digest AlgorithmIdentifier, or NULL.
psigOptional destination for the signature AlgorithmIdentifier, or NULL.