Show / Hide Table of Contents

Class MeasuredBootEntry

One Trusted Platform Module (TPM) Platform Configuration Register (PCR) entry. The entry might be measured during boot, or specified in a policy.

Inheritance
object
MeasuredBootEntry
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class MeasuredBootEntry

Properties

HashAlgorithm

Declaration
[JsonProperty(PropertyName = "hashAlgorithm")]
public string HashAlgorithm { get; set; }
Property Value
Type Description
string

The type of algorithm used to calculate the hash.

PcrIndex

Declaration
[JsonProperty(PropertyName = "pcrIndex")]
public string PcrIndex { get; set; }
Property Value
Type Description
string

The index of the policy.

Value

Declaration
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

The hashed PCR value.

In this article
Back to top