namespace BinaryObjectScanner.Models.AACS
{
///
/// This record gives the associated encrypted media key data for the
/// subset-differences identified in the Explicit Subset-Difference Record.
///
///
public sealed class MediaKeyDataRecord : Record
{
///
/// Each subset difference has its associated 16 bytes in this
/// record, in the same order it is encountered in the subset-difference
/// record. This 16 bytes is the ciphertext value C in the media
/// key calculation.
///
public byte[][] MediaKeyData;
}
}