mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
155 lines
3.7 KiB
C#
155 lines
3.7 KiB
C#
namespace BinaryObjectScanner.Models.N3DS
|
|
{
|
|
/// <summary>
|
|
/// A format used to store information about a title (installed title, DLC, etc.)
|
|
/// and all its installed contents, including which contents they consist of and
|
|
/// their SHA256 hashes.
|
|
/// </summary>
|
|
/// <see href="https://www.3dbrew.org/wiki/Title_metadata"/>
|
|
public sealed class TitleMetadata
|
|
{
|
|
/// <summary>
|
|
/// Signature Type
|
|
/// </summary>
|
|
public SignatureType SignatureType;
|
|
|
|
/// <summary>
|
|
/// Signature size
|
|
/// </summary>
|
|
public ushort SignatureSize;
|
|
|
|
/// <summary>
|
|
/// Padding size
|
|
/// </summary>
|
|
public byte PaddingSize;
|
|
|
|
/// <summary>
|
|
/// Signature
|
|
/// </summary>
|
|
public byte[] Signature;
|
|
|
|
/// <summary>
|
|
/// Padding
|
|
/// </summary>
|
|
public byte[] Padding1;
|
|
|
|
/// <summary>
|
|
/// Signature Issuer
|
|
/// </summary>
|
|
public string Issuer;
|
|
|
|
/// <summary>
|
|
/// Version
|
|
/// </summary>
|
|
public byte Version;
|
|
|
|
/// <summary>
|
|
/// CaCrlVersion
|
|
/// </summary>
|
|
public byte CaCrlVersion;
|
|
|
|
/// <summary>
|
|
/// SignerCrlVersion
|
|
/// </summary>
|
|
public byte SignerCrlVersion;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte Reserved1;
|
|
|
|
/// <summary>
|
|
/// System Version
|
|
/// </summary>
|
|
public ulong SystemVersion;
|
|
|
|
/// <summary>
|
|
/// TitleID
|
|
/// </summary>
|
|
public ulong TitleID;
|
|
|
|
/// <summary>
|
|
/// Title Type
|
|
/// </summary>
|
|
public uint TitleType;
|
|
|
|
/// <summary>
|
|
/// Group ID
|
|
/// </summary>
|
|
public ushort GroupID;
|
|
|
|
/// <summary>
|
|
/// Save Data Size in Little Endian (Bytes) (Also SRL Public Save Data Size)
|
|
/// </summary>
|
|
public uint SaveDataSize;
|
|
|
|
/// <summary>
|
|
/// SRL Private Save Data Size in Little Endian (Bytes)
|
|
/// </summary>
|
|
public uint SRLPrivateSaveDataSize;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved2;
|
|
|
|
/// <summary>
|
|
/// SRL Flag
|
|
/// </summary>
|
|
public byte SRLFlag;
|
|
|
|
/// <summary>
|
|
/// Reserved
|
|
/// </summary>
|
|
public byte[] Reserved3;
|
|
|
|
/// <summary>
|
|
/// Access Rights
|
|
/// </summary>
|
|
public uint AccessRights;
|
|
|
|
/// <summary>
|
|
/// Title Version
|
|
/// </summary>
|
|
public ushort TitleVersion;
|
|
|
|
/// <summary>
|
|
/// Content Count (big-endian)
|
|
/// </summary>
|
|
public ushort ContentCount;
|
|
|
|
/// <summary>
|
|
/// Boot Content
|
|
/// </summary>
|
|
public ushort BootContent;
|
|
|
|
/// <summary>
|
|
/// Padding
|
|
/// </summary>
|
|
public byte[] Padding2;
|
|
|
|
/// <summary>
|
|
/// SHA-256 Hash of the Content Info Records
|
|
/// </summary>
|
|
public byte[] SHA256HashContentInfoRecords;
|
|
|
|
/// <summary>
|
|
/// There are 64 of these records, usually only the first is used.
|
|
/// </summary>
|
|
public ContentInfoRecord[] ContentInfoRecords;
|
|
|
|
/// <summary>
|
|
/// There is one of these for each content contained in this title.
|
|
/// (Determined by "Content Count" in the TMD Header).
|
|
/// </summary>
|
|
public ContentChunkRecord[] ContentChunkRecords;
|
|
|
|
/// <summary>
|
|
/// Certificate chain
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://www.3dbrew.org/wiki/Title_metadata#Certificate_Chain
|
|
/// </remarks>
|
|
public Certificate[] CertificateChain;
|
|
}
|
|
} |