mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-05 22:01:33 +00:00
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.
23 lines
950 B
C#
23 lines
950 B
C#
namespace SabreTools.Data.Models.PKZIP
|
|
{
|
|
/// <summary>
|
|
/// The following is the layout of the Policy Key Data "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 = 0x0023</remarks>
|
|
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
|
|
public class PolicyKeyDataRecordRecordExtraField : ExtensibleDataField
|
|
{
|
|
/// <summary>
|
|
/// Data about the key
|
|
/// </summary>
|
|
public byte[] TData { get; set; } = [];
|
|
}
|
|
}
|