namespace SabreTools.Data.Models.PKZIP { /// /// WinZip AES encryption data /// /// Header ID = 0x9901 /// public class AesEncryptionStructure : ExtensibleDataField { /// /// Compression type /// /// Values 0f 0x01 and 0x02 are accepted public ushort CompressionType { get; set; } /// /// Vendor ID /// /// Should be 0x4541 public ushort VendorID { get; set; } /// /// Unknown /// /// This value is unreferenced public byte Unknown { get; set; } /// /// Compression method /// public CompressionMethod CompressionMethod { get; set; } } }