Home | History | Annotate | Download | only in HashLibBaseCryptoRouter

Lines Matching refs:HashCtx

45   HASH_HANDLE  *HashCtx;

53 HashCtx = AllocatePool (sizeof(*HashCtx) * mHashInterfaceCount);
54 ASSERT (HashCtx != NULL);
59 mHashInterface[Index].HashInit (&HashCtx[Index]);
63 *HashHandle = (HASH_HANDLE)HashCtx;
85 HASH_HANDLE *HashCtx;
93 HashCtx = (HASH_HANDLE *)HashHandle;
98 mHashInterface[Index].HashUpdate (HashCtx[Index], DataToHash, DataToHashLen);
127 HASH_HANDLE *HashCtx;
136 HashCtx = (HASH_HANDLE *)HashHandle;
142 mHashInterface[Index].HashUpdate (HashCtx[Index], DataToHash, DataToHashLen);
143 mHashInterface[Index].HashFinal (HashCtx[Index], &Digest);
148 FreePool (HashCtx);