2014-07-29 04:21:52 +02:00
|
|
|
/** @file
|
|
|
|
Null instance of Platform Sec Lib.
|
|
|
|
|
2015-04-23 10:52:21 +02:00
|
|
|
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:08 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-07-29 04:21:52 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <PiPei.h>
|
|
|
|
|
2015-08-02 06:02:37 +02:00
|
|
|
/**
|
|
|
|
This function check the signture of UPD.
|
|
|
|
|
|
|
|
@param[in] ApiIdx Internal index of the FSP API.
|
|
|
|
@param[in] ApiParam Parameter of the FSP API.
|
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
FspUpdSignatureCheck (
|
|
|
|
IN UINT32 ApiIdx,
|
|
|
|
IN VOID *ApiParam
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2015-04-23 10:52:21 +02:00
|
|
|
|