TianoCore EDK2 master
Loading...
Searching...
No Matches
CryptPemNull.c
Go to the documentation of this file.
1
10#include "InternalCryptLib.h"
11
27BOOLEAN
28EFIAPI
30 IN CONST UINT8 *PemData,
31 IN UINTN PemSize,
32 IN CONST CHAR8 *Password,
33 OUT VOID **RsaContext
34 )
35{
36 ASSERT (FALSE);
37 return FALSE;
38}
39
57BOOLEAN
58EFIAPI
60 IN CONST UINT8 *PemData,
61 IN UINTN PemSize,
62 IN CONST CHAR8 *Password,
63 OUT VOID **EcContext
64 )
65{
66 ASSERT (FALSE);
67 return FALSE;
68}
UINT64 UINTN
#define CONST
Definition: Base.h:259
#define FALSE
Definition: Base.h:307
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284
BOOLEAN EFIAPI RsaGetPrivateKeyFromPem(IN CONST UINT8 *PemData, IN UINTN PemSize, IN CONST CHAR8 *Password, OUT VOID **RsaContext)
Definition: CryptPemNull.c:29
BOOLEAN EFIAPI EcGetPrivateKeyFromPem(IN CONST UINT8 *PemData, IN UINTN PemSize, IN CONST CHAR8 *Password, OUT VOID **EcContext)
Definition: CryptPemNull.c:59