/** @file
|
NULL Tcg2PhysicalPresenceLib library instance
|
|
@copyright
|
Copyright (c) 2018, Red Hat, Inc.
|
Copyright (c) 2013 - 2021, Intel Corporation. All rights reserved.<BR>
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
**/
|
|
#include <Library/Tcg2PhysicalPresenceLib.h>
|
|
/**
|
Check if the pending TPM request needs user input to confirm.
|
|
The TPM request may come from OS. This API will check if TPM request exists and need user
|
input to confirmation.
|
|
@retval TRUE TPM needs input to confirm user physical presence.
|
@retval FALSE TPM doesn't need input to confirm user physical presence.
|
|
**/
|
BOOLEAN
|
EFIAPI
|
Tcg2PhysicalPresenceLibNeedUserConfirm (
|
VOID
|
)
|
{
|
return FALSE;
|
}
|
|
VOID
|
EFIAPI
|
Tcg2PhysicalPresenceLibProcessRequest (
|
IN TPM2B_AUTH *PlatformAuth OPTIONAL
|
)
|
{
|
//
|
// do nothing
|
//
|
}
|