Files

19 lines
663 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.PKZIP
2025-09-26 10:57:15 -04:00
{
/// <summary>
/// This field contains the information about which certificate in
/// the PKCS#7 store was used to sign a particular file. It also
/// contains the signature data. This field can appear multiple
/// times, but can only appear once per certificate.
/// </summary>
/// <remarks>Header ID = 0x0015</remarks>
/// <see href="https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT"/>
2025-09-26 10:57:15 -04:00
public class X509IndividualFile : ExtensibleDataField
{
/// <summary>
/// Signature Data
/// </summary>
public byte[] TData { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
}