mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-20 05:03:11 +00:00
22 lines
673 B
C#
22 lines
673 B
C#
namespace SabreTools.Data.Models.STFS
|
|
{
|
|
/// <summary>
|
|
/// Signature block signed by Microsoft, for LIVE and PIRS format STFS files
|
|
/// </summary>
|
|
/// <see href="https://free60.org/System-Software/Formats/STFS/"/>
|
|
public class MicrosoftSignature : Signature
|
|
{
|
|
/// <summary>
|
|
/// Signature remotely signed by Microsoft
|
|
/// </summary>
|
|
/// <remarks>256 bytes</remarks>
|
|
public byte[] PackageSignature { get; set; } = new byte[256];
|
|
|
|
/// <summary>
|
|
/// Zeroed padding
|
|
/// </summary>
|
|
/// <remarks>296 bytes</remarks>
|
|
public byte[] Padding { get; set; } = new byte[296];
|
|
}
|
|
}
|