]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/Hash/CryptMd5Null.c
Add interfaces to several library instances of BaseCryptLib.
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLibRuntimeCryptProtocol / Hash / CryptMd5Null.c
CommitLineData
532616bb 1/** @file\r
2 MD5 Digest Wrapper Implementation which does not provide real capabilities.\r
3\r
4Copyright (c) 2012, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "InternalCryptLib.h"\r
16\r
17\r
18/**\r
19 Retrieves the size, in bytes, of the context buffer required for MD5 hash operations.\r
20\r
21 Return zero to indicate this interface is not supported.\r
22\r
23 @retval 0 This interface is not supported.\r
24\r
25**/\r
26UINTN\r
27EFIAPI\r
28Md5GetContextSize (\r
29 VOID\r
30 )\r
31{\r
32 ASSERT (FALSE);\r
33 return 0;\r
34}\r
35\r
36\r
37/**\r
38 Initializes user-supplied memory pointed by Md5Context as MD5 hash context for\r
39 subsequent use.\r
40\r
41 Return FALSE to indicate this interface is not supported.\r
42\r
43 @param[out] Md5Context Pointer to MD5 context being initialized.\r
44\r
45 @retval FALSE This interface is not supported.\r
46\r
47**/\r
48BOOLEAN\r
49EFIAPI\r
50Md5Init (\r
51 OUT VOID *Md5Context\r
52 )\r
53{\r
54 ASSERT (FALSE);\r
55 return FALSE;\r
56}\r
57\r
58/**\r
59 Makes a copy of an existing MD5 context.\r
60\r
61 Return FALSE to indicate this interface is not supported.\r
62\r
63 @param[in] Md5Context Pointer to MD5 context being copied.\r
64 @param[out] NewMd5Context Pointer to new MD5 context.\r
65\r
66 @retval FALSE This interface is not supported.\r
67\r
68**/\r
69BOOLEAN\r
70EFIAPI\r
71Md5Duplicate (\r
72 IN CONST VOID *Md5Context,\r
73 OUT VOID *NewMd5Context\r
74 )\r
75{\r
76 ASSERT (FALSE);\r
77 return FALSE;\r
78}\r
79\r
80/**\r
81 Digests the input data and updates MD5 context.\r
82\r
83 Return FALSE to indicate this interface is not supported.\r
84\r
85 @param[in, out] Md5Context Pointer to the MD5 context.\r
86 @param[in] Data Pointer to the buffer containing the data to be hashed.\r
87 @param[in] DataSize Size of Data buffer in bytes.\r
88\r
89 @retval FALSE This interface is not supported.\r
90\r
91**/\r
92BOOLEAN\r
93EFIAPI\r
94Md5Update (\r
95 IN OUT VOID *Md5Context,\r
96 IN CONST VOID *Data,\r
97 IN UINTN DataSize\r
98 )\r
99{\r
100 ASSERT (FALSE);\r
101 return FALSE;\r
102}\r
103\r
104/**\r
105 Completes computation of the MD5 digest value.\r
106\r
107 Return FALSE to indicate this interface is not supported.\r
108\r
109 @param[in, out] Md5Context Pointer to the MD5 context.\r
110 @param[out] HashValue Pointer to a buffer that receives the MD5 digest\r
111 value (16 bytes).\r
112\r
113 @retval FALSE This interface is not supported.\r
114\r
115**/\r
116BOOLEAN\r
117EFIAPI\r
118Md5Final (\r
119 IN OUT VOID *Md5Context,\r
120 OUT UINT8 *HashValue\r
121 )\r
122{\r
123 ASSERT (FALSE);\r
124 return FALSE;\r
125}\r