TianoCore EDK2 master
Loading...
Searching...
No Matches
CryptMd5Null.c
Go to the documentation of this file.
1
10#include "InternalCryptLib.h"
11
19EFIAPI
21 VOID
22 )
23{
24 ASSERT (FALSE);
25 return 0;
26}
27
40BOOLEAN
41EFIAPI
43 OUT VOID *Md5Context
44 )
45{
46 ASSERT (FALSE);
47 return FALSE;
48}
49
63BOOLEAN
64EFIAPI
66 IN CONST VOID *Md5Context,
67 OUT VOID *NewMd5Context
68 )
69{
70 ASSERT (FALSE);
71 return FALSE;
72}
73
92BOOLEAN
93EFIAPI
95 IN OUT VOID *Md5Context,
96 IN CONST VOID *Data,
97 IN UINTN DataSize
98 )
99{
100 ASSERT (FALSE);
101 return FALSE;
102}
103
124BOOLEAN
125EFIAPI
127 IN OUT VOID *Md5Context,
128 OUT UINT8 *HashValue
129 )
130{
131 ASSERT (FALSE);
132 return FALSE;
133}
134
153BOOLEAN
154EFIAPI
156 IN CONST VOID *Data,
157 IN UINTN DataSize,
158 OUT UINT8 *HashValue
159 )
160{
161 ASSERT (FALSE);
162 return FALSE;
163}
UINT64 UINTN
BOOLEAN EFIAPI Md5Duplicate(IN CONST VOID *Md5Context, OUT VOID *NewMd5Context)
Definition: CryptMd5Null.c:65
BOOLEAN EFIAPI Md5Final(IN OUT VOID *Md5Context, OUT UINT8 *HashValue)
Definition: CryptMd5Null.c:126
BOOLEAN EFIAPI Md5Update(IN OUT VOID *Md5Context, IN CONST VOID *Data, IN UINTN DataSize)
Definition: CryptMd5Null.c:94
BOOLEAN EFIAPI Md5Init(OUT VOID *Md5Context)
Definition: CryptMd5Null.c:42
BOOLEAN EFIAPI Md5HashAll(IN CONST VOID *Data, IN UINTN DataSize, OUT UINT8 *HashValue)
Definition: CryptMd5Null.c:155
UINTN EFIAPI Md5GetContextSize(VOID)
Definition: CryptMd5Null.c:20
#define CONST
Definition: Base.h:259
#define FALSE
Definition: Base.h:307
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284