Lines Matching refs:hashEntry
1110 AMT_STATUS PTHICommand::GetCertificateHashEntry(UINT32 hashHandle, CERTHASH_ENTRY &hashEntry)
1131 hashEntry.IsActive = tmp_response->Hash.IsActive;
1132 hashEntry.IsDefault = tmp_response->Hash.IsDefault;
1133 hashEntry.Name.Length = tmp_response->Hash.Name.Length;
1134 hashEntry.HashAlgorithm = tmp_response->Hash.HashAlgorithm;
1135 memcpy(hashEntry.CertificateHash, tmp_response->Hash.CertificateHash, sizeof(tmp_response->Hash.CertificateHash));
1136 hashEntry.Name.Buffer = (CHAR *)malloc(hashEntry.Name.Length * sizeof(CHAR));
1137 if (NULL == hashEntry.Name.Buffer)
1142 memcpy(hashEntry.Name.Buffer, &(tmp_response->Hash.Name.Buffer), hashEntry.Name.Length * sizeof(CHAR));