]> git.proxmox.com Git - mirror_edk2.git/blame - CryptoPkg/Library/BaseCryptLib/Hmac/CryptHmacSha1Null.c
CryptoPkg/BaseCryptLib: remove HmacXxxGetContextSize interface
[mirror_edk2.git] / CryptoPkg / Library / BaseCryptLib / Hmac / CryptHmacSha1Null.c
CommitLineData
532616bb 1/** @file\r
630f67dd 2 HMAC-SHA1 Wrapper Implementation which does not provide real capabilities.\r
532616bb 3\r
9a1f14ad 4Copyright (c) 2012 - 2020, Intel Corporation. All rights reserved.<BR>\r
2009f6b4 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
532616bb 6\r
7**/\r
8\r
9#include "InternalCryptLib.h"\r
10\r
4c270243
QL
11/**\r
12 Allocates and initializes one HMAC_CTX context for subsequent HMAC-SHA1 use.\r
13\r
14 Return NULL to indicate this interface is not supported.\r
15\r
16 @return NULL This interface is not supported..\r
17\r
18**/\r
19VOID *\r
20EFIAPI\r
21HmacSha1New (\r
22 VOID\r
23 )\r
24{\r
25 ASSERT (FALSE);\r
26 return NULL;\r
27}\r
28\r
29/**\r
30 Release the specified HMAC_CTX context.\r
31\r
32 This function will do nothing.\r
33\r
34 @param[in] HmacSha1Ctx Pointer to the HMAC_CTX context to be released.\r
35\r
36**/\r
37VOID\r
38EFIAPI\r
39HmacSha1Free (\r
40 IN VOID *HmacSha1Ctx\r
41 )\r
42{\r
43 ASSERT (FALSE);\r
44 return;\r
45}\r
46\r
532616bb 47/**\r
a23fdff6
JW
48 Set user-supplied key for subsequent use. It must be done before any\r
49 calling to HmacSha1Update().\r
532616bb 50\r
630f67dd 51 Return FALSE to indicate this interface is not supported.\r
532616bb 52\r
a23fdff6 53 @param[out] HmacSha1Context Pointer to HMAC-SHA1 context.\r
532616bb 54 @param[in] Key Pointer to the user-supplied key.\r
55 @param[in] KeySize Key size in bytes.\r
56\r
57 @retval FALSE This interface is not supported.\r
58\r
59**/\r
60BOOLEAN\r
61EFIAPI\r
a23fdff6 62HmacSha1SetKey (\r
532616bb 63 OUT VOID *HmacSha1Context,\r
64 IN CONST UINT8 *Key,\r
65 IN UINTN KeySize\r
66 )\r
67{\r
68 ASSERT (FALSE);\r
69 return FALSE;\r
70}\r
71\r
72/**\r
73 Makes a copy of an existing HMAC-SHA1 context.\r
74\r
75 Return FALSE to indicate this interface is not supported.\r
76\r
77 @param[in] HmacSha1Context Pointer to HMAC-SHA1 context being copied.\r
78 @param[out] NewHmacSha1Context Pointer to new HMAC-SHA1 context.\r
79\r
80 @retval FALSE This interface is not supported.\r
81\r
82**/\r
83BOOLEAN\r
84EFIAPI\r
85HmacSha1Duplicate (\r
86 IN CONST VOID *HmacSha1Context,\r
87 OUT VOID *NewHmacSha1Context\r
88 )\r
89{\r
90 ASSERT (FALSE);\r
91 return FALSE;\r
92}\r
93\r
94/**\r
95 Digests the input data and updates HMAC-SHA1 context.\r
96\r
630f67dd 97 Return FALSE to indicate this interface is not supported.\r
532616bb 98\r
99 @param[in, out] HmacSha1Context Pointer to the HMAC-SHA1 context.\r
100 @param[in] Data Pointer to the buffer containing the data to be digested.\r
101 @param[in] DataSize Size of Data buffer in bytes.\r
102\r
103 @retval FALSE This interface is not supported.\r
104\r
105**/\r
106BOOLEAN\r
107EFIAPI\r
108HmacSha1Update (\r
109 IN OUT VOID *HmacSha1Context,\r
110 IN CONST VOID *Data,\r
111 IN UINTN DataSize\r
112 )\r
113{\r
114 ASSERT (FALSE);\r
115 return FALSE;\r
116}\r
117\r
118/**\r
119 Completes computation of the HMAC-SHA1 digest value.\r
120\r
630f67dd 121 Return FALSE to indicate this interface is not supported.\r
532616bb 122\r
123 @param[in, out] HmacSha1Context Pointer to the HMAC-SHA1 context.\r
124 @param[out] HmacValue Pointer to a buffer that receives the HMAC-SHA1 digest\r
125 value (20 bytes).\r
126\r
127 @retval FALSE This interface is not supported.\r
128\r
129**/\r
130BOOLEAN\r
131EFIAPI\r
132HmacSha1Final (\r
133 IN OUT VOID *HmacSha1Context,\r
134 OUT UINT8 *HmacValue\r
135 )\r
136{\r
137 ASSERT (FALSE);\r
138 return FALSE;\r
139}\r