Home | History | Annotate | Download | only in TcgDxe

Lines Matching refs:Sha1Ctx

292   VOID   *Sha1Ctx;

296 Sha1Ctx = AllocatePool (CtxSize);
297 ASSERT (Sha1Ctx != NULL);
299 Sha1Init (Sha1Ctx);
300 Sha1Update (Sha1Ctx, Data, DataLen);
301 Sha1Final (Sha1Ctx, (UINT8 *)Digest);
303 FreePool (Sha1Ctx);