Home | History | Annotate | Download | only in SecureBootConfigDxe

Lines Matching refs:HashCtx

1088   VOID                      *HashCtx;

1093 HashCtx = NULL;
1111 HashCtx = AllocatePool (CtxSize);
1112 ASSERT (HashCtx != NULL);
1117 Status = mHash[HashAlg].HashInit (HashCtx);
1125 Status = mHash[HashAlg].HashUpdate (HashCtx, TBSCert, TBSCertSize);
1134 Status = mHash[HashAlg].HashFinal (HashCtx, CertHash);
1137 if (HashCtx != NULL) {
1138 FreePool (HashCtx);
1776 VOID *HashCtx;
1785 HashCtx = NULL;
1808 HashCtx = AllocatePool (CtxSize);
1809 ASSERT (HashCtx != NULL);
1814 Status = mHash[HashAlg].HashInit(HashCtx);
1854 Status = mHash[HashAlg].HashUpdate(HashCtx, HashBase, HashSize);
1877 Status = mHash[HashAlg].HashUpdate(HashCtx, HashBase, HashSize);
1899 Status = mHash[HashAlg].HashUpdate(HashCtx, HashBase, HashSize);
1964 Status = mHash[HashAlg].HashUpdate(HashCtx, HashBase, HashSize);
1998 Status = mHash[HashAlg].HashUpdate(HashCtx, HashBase, HashSize);
2004 Status = mHash[HashAlg].HashFinal(HashCtx, mImageDigest);
2007 if (HashCtx != NULL) {
2008 FreePool (HashCtx);