namespace BinaryObjectScanner.Models.N3DS { /// /// The exheader has two sections: /// - The actual exheader data, containing System Control Info (SCI) and Access Control Info (ACI); /// - A signed copy of NCCH HDR public key, and exheader ACI. This version of the ACI is used as limitation to the actual ACI. /// /// public sealed class NCCHExtendedHeader { /// /// SCI /// public SystemControlInfo SCI; /// /// ACI /// public AccessControlInfo ACI; /// /// AccessDesc signature (RSA-2048-SHA256) /// public byte[] AccessDescSignature; /// /// NCCH HDR RSA-2048 public key /// public byte[] NCCHHDRPublicKey; /// /// ACI (for limitation of first ACI) /// public AccessControlInfo ACIForLimitations; } }