Searched refs:HashValue (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptMd4.c155 If HashValue is NULL, then return FALSE.
158 @param[out] HashValue Pointer to a buffer that receives the MD4 digest
169 OUT UINT8 *HashValue
175 if (Md4Context == NULL || HashValue == NULL) {
182 return (BOOLEAN) (MD4_Final (HashValue, (MD4_CTX *)Md4Context));
H A DCryptMd5.c157 If HashValue is NULL, then return FALSE.
160 @param[out] HashValue Pointer to a buffer that receives the MD5 digest
171 OUT UINT8 *HashValue
177 if (Md5Context == NULL || HashValue == NULL) {
184 return (BOOLEAN) (MD5_Final (HashValue, (MD5_CTX *)Md5Context));
H A DCryptSha1.c156 If HashValue is NULL, then return FALSE.
159 @param[out] HashValue Pointer to a buffer that receives the SHA-1 digest
170 OUT UINT8 *HashValue
176 if (Sha1Context == NULL || HashValue == NULL) {
183 return (BOOLEAN) (SHA1_Final (HashValue, (SHA_CTX *)Sha1Context));
H A DCryptSha256.c155 If HashValue is NULL, then return FALSE.
158 @param[out] HashValue Pointer to a buffer that receives the SHA-256 digest
169 OUT UINT8 *HashValue
175 if (Sha256Context == NULL || HashValue == NULL) {
182 return (BOOLEAN) (SHA256_Final (HashValue, (SHA256_CTX *)Sha256Context));
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/CryptRuntimeDxe/
H A DCryptRuntime.c104 If HashValue is NULL, then return FALSE.
107 @param[out] HashValue Pointer to a buffer that receives the SHA-256 digest
118 OUT UINT8 *HashValue
121 return Sha256Final (Sha256Context, HashValue);
H A DCryptRuntime.h88 If HashValue is NULL, then return FALSE.
91 @param[out] HashValue Pointer to a buffer that receives the SHA-256 digest
102 OUT UINT8 *HashValue
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/Protocol/
H A DRuntimeCrypt.h91 If HashValue is NULL, then return FALSE.
94 @param[out] HashValue Pointer to a buffer that receives the SHA-256 digest
105 OUT UINT8 *HashValue
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Application/Cryptest/
H A DRsaVerify.c95 UINT8 HashValue[SHA1_DIGEST_SIZE]; local
306 ZeroMem (HashValue, HashSize);
322 Status = Sha1Final (Sha1Ctx, HashValue);
362 Status = RsaPkcs1Sign (Rsa, HashValue, HashSize, NULL, &SigSize);
369 Status = RsaPkcs1Sign (Rsa, HashValue, HashSize, Signature, &SigSize);
391 Status = RsaPkcs1Verify (Rsa, HashValue, HashSize, Signature, SigSize);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/
H A DRuntimeDxeIpfCryptLib.c255 If HashValue is NULL, then return FALSE.
258 @param[out] HashValue Pointer to a buffer that receives the SHA-256 digest
269 OUT UINT8 *HashValue
276 return mCryptProtocol->Sha256Final (Sha256Context, HashValue);
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeImageVerificationLib/
H A DDxeImageVerificationLib.h148 If HashValue is NULL, then ASSERT().
151 @param[out] HashValue Pointer to a buffer that receives the HASH digest
162 OUT UINT8 *HashValue
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/Library/
H A DBaseCryptLib.h155 If HashValue is NULL, then return FALSE.
158 @param[out] HashValue Pointer to a buffer that receives the MD4 digest
169 OUT UINT8 *HashValue
258 If HashValue is NULL, then return FALSE.
261 @param[out] HashValue Pointer to a buffer that receives the MD5 digest
272 OUT UINT8 *HashValue
361 If HashValue is NULL, then return FALSE.
364 @param[out] HashValue Pointer to a buffer that receives the SHA-1 digest
375 OUT UINT8 *HashValue
464 If HashValue i
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecCryptIo.h111 If HashValue is NULL, then ASSERT().
292 If HashValue is NULL, then ASSERT().
295 @param[out] HashValue Pointer to a buffer that receives the digest
306 OUT UINT8 *HashValue
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigImpl.h297 If HashValue is NULL, then ASSERT().
300 @param[out] HashValue Pointer to a buffer that receives the HASH digest
311 OUT UINT8 *HashValue

Completed in 628 milliseconds