TianoCore EDK2 master
Loading...
Searching...
No Matches
CryptAesNull.c
Go to the documentation of this file.
1
9#include "InternalCryptLib.h"
10
20EFIAPI
22 VOID
23 )
24{
25 ASSERT (FALSE);
26 return 0;
27}
28
41BOOLEAN
42EFIAPI
44 OUT VOID *AesContext,
45 IN CONST UINT8 *Key,
46 IN UINTN KeyLength
47 )
48{
49 ASSERT (FALSE);
50 return FALSE;
51}
52
67BOOLEAN
68EFIAPI
70 IN VOID *AesContext,
71 IN CONST UINT8 *Input,
72 IN UINTN InputSize,
73 IN CONST UINT8 *Ivec,
74 OUT UINT8 *Output
75 )
76{
77 ASSERT (FALSE);
78 return FALSE;
79}
80
95BOOLEAN
96EFIAPI
98 IN VOID *AesContext,
99 IN CONST UINT8 *Input,
100 IN UINTN InputSize,
101 IN CONST UINT8 *Ivec,
102 OUT UINT8 *Output
103 )
104{
105 ASSERT (FALSE);
106 return FALSE;
107}
UINT64 UINTN
BOOLEAN EFIAPI AesInit(OUT VOID *AesContext, IN CONST UINT8 *Key, IN UINTN KeyLength)
Definition: CryptAesNull.c:43
UINTN EFIAPI AesGetContextSize(VOID)
Definition: CryptAesNull.c:21
BOOLEAN EFIAPI AesCbcEncrypt(IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output)
Definition: CryptAesNull.c:69
BOOLEAN EFIAPI AesCbcDecrypt(IN VOID *AesContext, IN CONST UINT8 *Input, IN UINTN InputSize, IN CONST UINT8 *Ivec, OUT UINT8 *Output)
Definition: CryptAesNull.c:97
VOID EFIAPI Input(IN CHAR16 *Prompt OPTIONAL, OUT CHAR16 *InStr, IN UINTN StrLen)
Definition: EdbSupportUI.c:187
#define CONST
Definition: Base.h:259
#define FALSE
Definition: Base.h:307
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284