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
Name |
Description |
si |
Signer info to query. |
pk |
Optional destination for the signing private key pointer, or NULL. |
pdig |
Optional destination for the digest AlgorithmIdentifier, or NULL. |
psig |
Optional destination for the signature AlgorithmIdentifier, or NULL. |
Created with MrDocs