Searched defs:Sha256Context (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Hash/
H A DCryptSha256.c37 Initializes user-supplied memory pointed by Sha256Context as SHA-256 hash context for
40 If Sha256Context is NULL, then return FALSE.
42 @param[out] Sha256Context Pointer to SHA-256 context being initialized.
51 OUT VOID *Sha256Context
57 if (Sha256Context == NULL) {
64 return (BOOLEAN) (SHA256_Init ((SHA256_CTX *)Sha256Context));
70 If Sha256Context is NULL, then return FALSE.
73 @param[in] Sha256Context Pointer to SHA-256 context being copied.
83 IN CONST VOID *Sha256Context,
90 if (Sha256Context
82 Sha256Duplicate( IN CONST VOID *Sha256Context, OUT VOID *NewSha256Context ) argument
119 Sha256Update( IN OUT VOID *Sha256Context, IN CONST VOID *Data, IN UINTN DataSize ) argument
167 Sha256Final( IN OUT VOID *Sha256Context, OUT UINT8 *HashValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/CryptRuntimeDxe/
H A DCryptRuntime.c53 Initializes user-supplied memory pointed by Sha256Context as SHA-256 hash context for
56 If Sha256Context is NULL, then return FALSE.
58 @param[in, out] Sha256Context Pointer to SHA-256 Context being initialized.
67 IN OUT VOID *Sha256Context
70 return Sha256Init (Sha256Context);
77 If Sha256Context is NULL, then return FALSE.
79 @param[in, out] Sha256Context Pointer to the SHA-256 context.
91 IN OUT VOID *Sha256Context,
96 return Sha256Update (Sha256Context, Data, DataLength);
103 If Sha256Context i
90 RuntimeCryptSha256Update( IN OUT VOID *Sha256Context, IN CONST VOID *Data, IN UINTN DataLength ) argument
116 RuntimeCryptSha256Final( IN OUT VOID *Sha256Context, OUT UINT8 *HashValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLibRuntimeCryptProtocol/
H A DRuntimeDxeIpfCryptLib.c195 Initializes user-supplied memory pointed by Sha256Context as SHA-256 hash context for
198 If Sha256Context is NULL, then return FALSE.
200 @param[in, out] Sha256Context Pointer to SHA-256 Context being initialized.
209 IN OUT VOID *Sha256Context
216 return mCryptProtocol->Sha256Init (Sha256Context);
224 If Sha256Context is NULL, then return FALSE.
226 @param[in, out] Sha256Context Pointer to the SHA-256 context.
238 IN OUT VOID *Sha256Context,
247 return mCryptProtocol->Sha256Update (Sha256Context, Data, DataLength);
254 If Sha256Context i
237 Sha256Update( IN OUT VOID *Sha256Context, IN CONST VOID *Data, IN UINTN DataLength ) argument
267 Sha256Final( IN OUT VOID *Sha256Context, OUT UINT8 *HashValue ) argument
[all...]

Completed in 32 milliseconds