Files

23 lines
587 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.GameHeader
2025-09-26 10:20:48 -04:00
{
/// <summary>
/// Encrypted Data section for an NDS cart image
/// </summary>
public sealed class NitroEncryptedData
{
public ushort EncryptedSecure { get; set; }
// Hex string, no prefix
public string? EncryptedCRC32 { get; set; }
// Hex string, no prefix
public string? EncryptedMD5 { get; set; }
// Hex string, no prefix
public string? EncryptedSHA1 { get; set; }
// Hex string, no prefix
public string? EncryptedSHA256 { get; set; }
}
2026-01-27 12:03:01 -05:00
}