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>
|
2025-10-30 20:44:16 -04:00
|
|
|
/// <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>
|
2025-10-31 13:59:28 -04:00
|
|
|
public byte[] TData { get; set; } = [];
|
2025-09-26 10:57:15 -04:00
|
|
|
}
|
|
|
|
|
}
|