TianoCore EDK2 master
|
#include "InternalCryptLib.h"
Go to the source code of this file.
Functions | |
BOOLEAN EFIAPI | AuthenticodeVerify (IN CONST UINT8 *AuthData, IN UINTN DataSize, IN CONST UINT8 *TrustedCert, IN UINTN CertSize, IN CONST UINT8 *ImageHash, IN UINTN HashSize) |
Authenticode Portable Executable Signature Verification which does not provide real capabilities.
Copyright (c) 2012, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file CryptAuthenticodeNull.c.
BOOLEAN EFIAPI AuthenticodeVerify | ( | IN CONST UINT8 * | AuthData, |
IN UINTN | DataSize, | ||
IN CONST UINT8 * | TrustedCert, | ||
IN UINTN | CertSize, | ||
IN CONST UINT8 * | ImageHash, | ||
IN UINTN | HashSize | ||
) |
Verifies the validity of a PE/COFF Authenticode Signature as described in "Windows Authenticode Portable Executable Signature Format".
Return FALSE to indicate this interface is not supported.
[in] | AuthData | Pointer to the Authenticode Signature retrieved from signed PE/COFF image to be verified. |
[in] | DataSize | Size of the Authenticode Signature in bytes. |
[in] | TrustedCert | Pointer to a trusted/root certificate encoded in DER, which is used for certificate chain verification. |
[in] | CertSize | Size of the trusted certificate in bytes. |
[in] | ImageHash | Pointer to the original image file hash value. The procedure for calculating the image hash value is described in Authenticode specification. |
[in] | HashSize | Size of Image hash value in bytes. |
FALSE | This interface is not supported. |
Definition at line 34 of file CryptAuthenticodeNull.c.