36 lines
1023 B
Plaintext
36 lines
1023 B
Plaintext
// Copyright (c) 2007-2010, Intel Corporation. All rights reserved.
|
|
[
|
|
Version ( "7.0.0" ),
|
|
Description
|
|
(
|
|
"The IPS_ClientProvisioningRecord provides information related "
|
|
"to a single Intel (R) AMT provisioning occurrence that was "
|
|
"performed using a host based provisioning operation in client control mode."
|
|
)
|
|
]
|
|
class IPS_ClientProvisioningRecord : IPS_ProvisioningAuditRecord
|
|
{
|
|
[
|
|
Description
|
|
(
|
|
"The Hashing Algorithm used to generate the "
|
|
"ProvCertificateHash field"
|
|
),
|
|
valueMap { "0", "1", "2", "3", ".." },
|
|
values { "Unknown", "Reserved", "SHA-1-160", "SHA-2-256", "Reserved" }
|
|
]
|
|
uint8 HashAlgorithm;
|
|
|
|
[
|
|
Description
|
|
(
|
|
"A Hash value of the certificate that was used to "
|
|
"digitally sign the provisioning operationA Value of NULL "
|
|
"indicates the caller did not sign the provisioning "
|
|
"operation."
|
|
),
|
|
OctetString
|
|
]
|
|
uint8 ProvCertificateHash[];
|
|
};
|