TianoCore EDK2 master
|
#include "InternalCryptLib.h"
Go to the source code of this file.
Functions | |
BOOLEAN EFIAPI | Pkcs7GetSigners (IN CONST UINT8 *P7Data, IN UINTN P7Length, OUT UINT8 **CertStack, OUT UINTN *StackLength, OUT UINT8 **TrustedCert, OUT UINTN *CertLength) |
VOID EFIAPI | Pkcs7FreeSigners (IN UINT8 *Certs) |
BOOLEAN EFIAPI | Pkcs7GetCertificatesList (IN CONST UINT8 *P7Data, IN UINTN P7Length, OUT UINT8 **SignerChainCerts, OUT UINTN *ChainLength, OUT UINT8 **UnchainCerts, OUT UINTN *UnchainLength) |
BOOLEAN EFIAPI | Pkcs7Verify (IN CONST UINT8 *P7Data, IN UINTN P7Length, IN CONST UINT8 *TrustedCert, IN UINTN CertLength, IN CONST UINT8 *InData, IN UINTN DataLength) |
BOOLEAN EFIAPI | Pkcs7GetAttachedContent (IN CONST UINT8 *P7Data, IN UINTN P7Length, OUT VOID **Content, OUT UINTN *ContentSize) |
PKCS#7 SignedData Verification Wrapper Implementation which does not provide real capabilities.
Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file CryptPkcs7VerifyNull.c.
VOID EFIAPI Pkcs7FreeSigners | ( | IN UINT8 * | Certs | ) |
Wrap function to use free() to free allocated memory for certificates.
If the interface is not supported, then ASSERT().
[in] | Certs | Pointer to the certificates to be freed. |
Definition at line 59 of file CryptPkcs7VerifyNull.c.
BOOLEAN EFIAPI Pkcs7GetAttachedContent | ( | IN CONST UINT8 * | P7Data, |
IN UINTN | P7Length, | ||
OUT VOID ** | Content, | ||
OUT UINTN * | ContentSize | ||
) |
Extracts the attached content from a PKCS#7 signed data if existed. The input signed data could be wrapped in a ContentInfo structure.
Return FALSE to indicate this interface is not supported.
[in] | P7Data | Pointer to the PKCS#7 signed data to process. |
[in] | P7Length | Length of the PKCS#7 signed data in bytes. |
[out] | Content | Pointer to the extracted content from the PKCS#7 signedData. It's caller's responsibility to free the buffer with FreePool(). |
[out] | ContentSize | The size of the extracted content in bytes. |
TRUE | The P7Data was correctly formatted for processing. |
FALSE | The P7Data was not correctly formatted for processing. |
Definition at line 154 of file CryptPkcs7VerifyNull.c.
BOOLEAN EFIAPI Pkcs7GetCertificatesList | ( | IN CONST UINT8 * | P7Data, |
IN UINTN | P7Length, | ||
OUT UINT8 ** | SignerChainCerts, | ||
OUT UINTN * | ChainLength, | ||
OUT UINT8 ** | UnchainCerts, | ||
OUT UINTN * | UnchainLength | ||
) |
Retrieves all embedded certificates from PKCS#7 signed data as described in "PKCS #7: Cryptographic Message Syntax Standard", and outputs two certificate lists chained and unchained to the signer's certificates. The input signed data could be wrapped in a ContentInfo structure.
[in] | P7Data | Pointer to the PKCS#7 message. |
[in] | P7Length | Length of the PKCS#7 message in bytes. |
[out] | SignerChainCerts | Pointer to the certificates list chained to signer's certificate. It's caller's responsibility to free the buffer with Pkcs7FreeSigners(). This data structure is EFI_CERT_STACK type. |
[out] | ChainLength | Length of the chained certificates list buffer in bytes. |
[out] | UnchainCerts | Pointer to the unchained certificates lists. It's caller's responsibility to free the buffer with Pkcs7FreeSigners(). This data structure is EFI_CERT_STACK type. |
[out] | UnchainLength | Length of the unchained certificates list buffer in bytes. |
TRUE | The operation is finished successfully. |
FALSE | Error occurs during the operation. |
Definition at line 90 of file CryptPkcs7VerifyNull.c.
BOOLEAN EFIAPI Pkcs7GetSigners | ( | IN CONST UINT8 * | P7Data, |
IN UINTN | P7Length, | ||
OUT UINT8 ** | CertStack, | ||
OUT UINTN * | StackLength, | ||
OUT UINT8 ** | TrustedCert, | ||
OUT UINTN * | CertLength | ||
) |
Get the signer's certificates from PKCS#7 signed data as described in "PKCS #7: Cryptographic Message Syntax Standard". The input signed data could be wrapped in a ContentInfo structure.
Return FALSE to indicate this interface is not supported.
[in] | P7Data | Pointer to the PKCS#7 message to verify. |
[in] | P7Length | Length of the PKCS#7 message in bytes. |
[out] | CertStack | Pointer to Signer's certificates retrieved from P7Data. It's caller's responsibility to free the buffer with Pkcs7FreeSigners(). This data structure is EFI_CERT_STACK type. |
[out] | StackLength | Length of signer's certificates in bytes. |
[out] | TrustedCert | Pointer to a trusted certificate from Signer's certificates. It's caller's responsibility to free the buffer with Pkcs7FreeSigners(). |
[out] | CertLength | Length of the trusted certificate in bytes. |
FALSE | This interface is not supported. |
Definition at line 36 of file CryptPkcs7VerifyNull.c.
BOOLEAN EFIAPI Pkcs7Verify | ( | IN CONST UINT8 * | P7Data, |
IN UINTN | P7Length, | ||
IN CONST UINT8 * | TrustedCert, | ||
IN UINTN | CertLength, | ||
IN CONST UINT8 * | InData, | ||
IN UINTN | DataLength | ||
) |
Verifies the validity of a PKCS#7 signed data as described in "PKCS #7: Cryptographic Message Syntax Standard". The input signed data could be wrapped in a ContentInfo structure.
Return FALSE to indicate this interface is not supported.
[in] | P7Data | Pointer to the PKCS#7 message to verify. |
[in] | P7Length | Length of the PKCS#7 message in bytes. |
[in] | TrustedCert | Pointer to a trusted/root certificate encoded in DER, which is used for certificate chain verification. |
[in] | CertLength | Length of the trusted certificate in bytes. |
[in] | InData | Pointer to the content to be verified. |
[in] | DataLength | Length of InData in bytes. |
FALSE | This interface is not supported. |
Definition at line 123 of file CryptPkcs7VerifyNull.c.