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>
|
2014-07-29 04:21:52 +02:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#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
|
|
|
|