namespace SabreTools.Data.Models.PKZIP { /// /// The following is the layout of the Policy Decryption Key "extra" block. /// TData is a variable length, variable content field. It holds /// information about encryptions and/or encryption key sources. /// Contact PKWARE for information on current TData structures. /// Information in this "extra" block may aternatively be placed /// within comment fields. Refer to the section in this document /// entitled "Incorporating PKWARE Proprietary Technology into Your /// Product" for more information. /// /// Header ID = 0x0021 /// public class PolicyDecryptionKeyRecordExtraField : ExtensibleDataField { /// /// Data about the key /// public byte[] TData { get; set; } = []; } }