namespace BinaryObjectScanner.Models.AACS
{
///
public sealed class HostRevocationSignatureBlock
{
///
/// The number of Host Revocation List Entry fields in the signature block.
///
public uint NumberOfEntries;
///
/// A list of 8-byte Host Revocation List Entry fields, the length of this
/// list being equal to the number in the signature block.
///
public HostRevocationListEntry[] EntryFields;
}
}