namespace SabreTools.Data.Models.STFS { /// /// Signature block signed by Microsoft, for LIVE and PIRS format STFS files /// /// public class MicrosoftSignature : Signature { /// /// Signature remotely signed by Microsoft /// /// 256 bytes public byte[] PackageSignature { get; set; } = new byte[256]; /// /// Zeroed padding /// /// 296 bytes public byte[] Padding { get; set; } = new byte[296]; } }