mirror of
https://github.com/acidanthera/audk.git
synced 2025-08-22 01:58:11 +02:00
This patch implement the SpdmSecurityLib, which is the core of DeviceSecurity. And the SpdmSecurityLib include Device Authentication and Measurement. The other library is to support SpdmSecurityLib. Cc: Jiewen Yao <jiewen.yao@intel.com> Signed-off-by: Wenxing Hou <wenxing.hou@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
24 lines
435 B
C
24 lines
435 B
C
/** @file
|
|
EDKII Device Security library for SPDM device.
|
|
It follows the SPDM Specification.
|
|
|
|
Copyright (c) 2024, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef LIBSPDM_STDBOOL_ALT_H
|
|
#define LIBSPDM_STDBOOL_ALT_H
|
|
|
|
typedef BOOLEAN bool;
|
|
|
|
#ifndef true
|
|
#define true TRUE
|
|
#endif
|
|
|
|
#ifndef false
|
|
#define false FALSE
|
|
#endif
|
|
|
|
#endif /* LIBSPDM_STDBOOL_ALT */
|