2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.AACS
|
2025-09-26 11:42:28 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A properly formatted type 3 or type 4 Media Key Block contains exactly
|
|
|
|
|
/// one Drive Revocation List Record. It follows the Host Revocation List
|
|
|
|
|
/// Record, although it may not immediately follow it.
|
2025-10-30 20:49:36 -04:00
|
|
|
///
|
2025-09-26 11:42:28 -04:00
|
|
|
/// The Drive Revocation List Record is identical to the Host Revocation
|
|
|
|
|
/// List Record, except it has type 2016, and it contains Drive Revocation
|
|
|
|
|
/// List Entries, not Host Revocation List Entries. The Drive Revocation List
|
|
|
|
|
/// Entries refer to Drive IDs in the Drive Certificates.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <see href="https://aacsla.com/wp-content/uploads/2019/02/AACS_Spec_Common_Final_0953.pdf"/>
|
|
|
|
|
public sealed class DriveRevocationListRecord : Record
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The total number of Drive Revocation List Entry fields that follow.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public uint TotalNumberOfEntries { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Revocation list entries
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public DriveRevocationSignatureBlock[] SignatureBlocks { get; set; } = [];
|
2025-09-26 11:42:28 -04:00
|
|
|
}
|
2025-10-30 20:49:36 -04:00
|
|
|
}
|