Searched defs:SpcIndirectDataContent (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/Pk/
H A DCryptAuthenticode.c58 UINT8 *SpcIndirectDataContent; local
97 SpcIndirectDataContent = (UINT8 *)(Pkcs7->d.sign->contents->d.other->value.asn1_string->data);
100 // Retrieve the SEQUENCE data size from ASN.1-encoded SpcIndirectDataContent.
102 Asn1Byte = *(SpcIndirectDataContent + 1);
112 SpcIndirectDataContent += 2;
117 ContentSize = (UINTN) (*(SpcIndirectDataContent + 2));
118 ContentSize = (ContentSize << 8) + (UINTN)(*(SpcIndirectDataContent + 3));
122 SpcIndirectDataContent += 4;
128 // Compare the original file hash value to the digest retrieve from SpcIndirectDataContent
132 if (CompareMem (SpcIndirectDataContent
[all...]

Completed in 67 milliseconds