Home
last modified time | relevance | path

Searched refs:Sha256Ctx (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/SecurityPkg/Library/HashInstanceLibSha256/
DHashInstanceLibSha256.c60 VOID *Sha256Ctx; in Sha256HashInit() local
64 Sha256Ctx = AllocatePool (CtxSize); in Sha256HashInit()
65 ASSERT (Sha256Ctx != NULL); in Sha256HashInit()
67 Sha256Init (Sha256Ctx); in Sha256HashInit()
69 *HashHandle = (HASH_HANDLE)Sha256Ctx; in Sha256HashInit()
91 VOID *Sha256Ctx; in Sha256HashUpdate() local
93 Sha256Ctx = (VOID *)HashHandle; in Sha256HashUpdate()
94 Sha256Update (Sha256Ctx, DataToHash, DataToHashLen); in Sha256HashUpdate()
115 VOID *Sha256Ctx; in Sha256HashFinal() local
117 Sha256Ctx = (VOID *)HashHandle; in Sha256HashFinal()
[all …]