Home | History | Annotate | Download | only in Hash2DxeCrypto

Lines Matching refs:HashCtx

357   VOID                     *HashCtx;

392 HashCtx = AllocatePool (CtxSize);
393 if (HashCtx == NULL) {
397 Ret = HashInfo->Init (HashCtx);
406 Instance->HashContext = HashCtx;
409 Ret = HashInfo->Update (HashCtx, Message, MessageSize);
415 Ret = HashInfo->Final (HashCtx, (UINT8 *)Hash->Sha1Hash);
424 FreePool (HashCtx);
454 VOID *HashCtx;
487 HashCtx = AllocatePool (CtxSize);
488 if (HashCtx == NULL) {
492 Ret = HashInfo->Init (HashCtx);
494 FreePool (HashCtx);
501 Instance->HashContext = HashCtx;
532 VOID *HashCtx;
548 HashCtx = Instance->HashContext;
550 Ret = HashInfo->Update (HashCtx, Message, MessageSize);
584 VOID *HashCtx;
601 HashCtx = Instance->HashContext;
603 Ret = HashInfo->Final (HashCtx, (UINT8 *)Hash->Sha1Hash);
608 FreePool (HashCtx);