Files
SabreTools.Serialization/SabreTools.Data.Models/PKZIP/PolicyDecryptionKeyRecordExtraField.cs
Matt Nadareski 7689c6dd07 Libraries
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
2026-03-21 16:26:56 -04:00

23 lines
956 B
C#

namespace SabreTools.Data.Models.PKZIP
{
/// <summary>
/// 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.
/// </summary>
/// <remarks>Header ID = 0x0021</remarks>
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
public class PolicyDecryptionKeyRecordExtraField : ExtensibleDataField
{
/// <summary>
/// Data about the key
/// </summary>
public byte[] TData { get; set; } = [];
}
}