Home | History | Annotate | Download | only in Hash2DxeCrypto

Lines Matching refs:HashAlgorithm

140   @param[in]  HashAlgorithm         Points to the EFI_GUID which identifies the algorithm to use.

145 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
146 or HashAlgorithm is null.
153 IN CONST EFI_GUID *HashAlgorithm,
162 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
166 returned by GetHashSize() for the specified HashAlgorithm.
171 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
172 or HashAlgorithm is Null.
181 IN CONST EFI_GUID *HashAlgorithm,
192 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
196 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
197 or HashAlgorithm is Null.
207 IN CONST EFI_GUID *HashAlgorithm
240 returned by GetHashSize() for the specified HashAlgorithm specified in preceding HashInit().
267 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
273 IN CONST EFI_GUID *HashAlgorithm
279 if (CompareGuid (HashAlgorithm, mHashInfo[Index].Guid)) {
290 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
295 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
296 or HashAlgorithm is null.
303 IN CONST EFI_GUID *HashAlgorithm,
313 if (HashAlgorithm == NULL) {
317 HashInfo = GetHashInfo (HashAlgorithm);
331 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
335 returned by GetHashSize() for the specified HashAlgorithm.
340 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
341 or HashAlgorithm is Null.
350 IN CONST EFI_GUID *HashAlgorithm,
369 if (HashAlgorithm == NULL) {
373 HashInfo = GetHashInfo (HashAlgorithm);
435 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
439 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
440 or HashAlgorithm is Null.
450 IN CONST EFI_GUID *HashAlgorithm
463 if (HashAlgorithm == NULL) {
467 HashInfo = GetHashInfo (HashAlgorithm);
567 returned by GetHashSize() for the specified HashAlgorithm specified in preceding HashInit().