CryptoPkg: Add RSA functions based on Mbedtls
Add RSA APIs. REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4177 Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Yi Li <yi1.li@intel.com> Cc: Xiaoyu Lu <xiaoyu1.lu@intel.com> Cc: Guomin Jiang <guomin.jiang@intel.com> Signed-off-by: Wenxing Hou <wenxing.hou@intel.com> Reviewed-by: Yi Li <yi1.li@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
60222e7eb9
commit
97f51f2e9b
25
CryptoPkg/Library/BaseCryptLibMbedTls/InternalCryptLib.h
Normal file
25
CryptoPkg/Library/BaseCryptLibMbedTls/InternalCryptLib.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/** @file
|
||||
Internal include file for BaseCryptLib.
|
||||
|
||||
Copyright (c) 2023, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
#ifndef INTERNAL_CRYPT_LIB_H_
|
||||
#define INTERNAL_CRYPT_LIB_H_
|
||||
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/BaseCryptLib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
//
|
||||
// We should alwasy add mbedtls/config.h here
|
||||
// to ensure the config override takes effect.
|
||||
//
|
||||
#include <mbedtls/mbedtls_config.h>
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user