LibHac/libhac/Nax0.cs

89 lines
3.1 KiB
C#
Raw Normal View History

2018-06-20 19:42:56 +02:00
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
using libhac.XTSSharp;
namespace libhac
{
2018-06-25 21:01:24 +02:00
public class Nax0 : IDisposable
2018-06-20 19:42:56 +02:00
{
2018-06-25 21:01:24 +02:00
public byte[] Hmac { get; private set; }
2018-06-20 19:42:56 +02:00
public byte[][] EncKeys { get; } = Util.CreateJaggedArray<byte[][]>(2, 0x10);
public byte[][] Keys { get; } = Util.CreateJaggedArray<byte[][]>(2, 0x10);
2018-06-25 21:01:24 +02:00
public long Length { get; private set; }
2018-06-20 19:42:56 +02:00
public Stream Stream { get; }
2018-06-25 21:01:24 +02:00
private bool KeepOpen { get; }
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
public Nax0(Keyset keyset, Stream stream, string sdPath, bool keepOpen)
2018-06-20 19:42:56 +02:00
{
2018-06-25 21:01:24 +02:00
stream.Position = 0;
KeepOpen = keepOpen;
ReadHeader(stream);
DeriveKeys(keyset, sdPath);
ValidateKeys(keyset, stream);
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
stream.Position = 0x4000;
var xts = XtsAes128.Create(Keys[0], Keys[1]);
2018-06-26 00:26:47 +02:00
Stream = new RandomAccessSectorStream(new XtsSectorStream(stream, xts, 0x4000, 0x4000), keepOpen);
2018-06-25 21:01:24 +02:00
}
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
private void ReadHeader(Stream stream)
{
var header = new byte[0x60];
stream.Read(header, 0, 0x60);
var reader = new BinaryReader(new MemoryStream(header));
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
Hmac = reader.ReadBytes(0x20);
string magic = reader.ReadAscii(4);
reader.BaseStream.Position += 4;
if (magic != "NAX0") throw new InvalidDataException("Not an NAX0 file");
EncKeys[0] = reader.ReadBytes(0x10);
EncKeys[1] = reader.ReadBytes(0x10);
Length = reader.ReadInt64();
}
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
private void DeriveKeys(Keyset keyset, string sdPath)
{
2018-06-20 19:42:56 +02:00
for (int k = 0; k < 2; k++)
{
var naxSpecificKeys = Util.CreateJaggedArray<byte[][]>(2, 0x10);
2018-06-25 21:01:24 +02:00
var hashKey = new byte[0x10];
Array.Copy(keyset.sd_card_keys[k], hashKey, 0x10);
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
var hash = new HMACSHA256(hashKey);
2018-06-20 19:42:56 +02:00
var sdPathBytes = Encoding.ASCII.GetBytes(sdPath);
2018-06-25 21:01:24 +02:00
var checksum = hash.ComputeHash(sdPathBytes, 0, sdPathBytes.Length);
2018-06-20 19:42:56 +02:00
Array.Copy(checksum, 0, naxSpecificKeys[0], 0, 0x10);
Array.Copy(checksum, 0x10, naxSpecificKeys[1], 0, 0x10);
Crypto.DecryptEcb(naxSpecificKeys[0], EncKeys[0], Keys[0], 0x10);
Crypto.DecryptEcb(naxSpecificKeys[1], EncKeys[1], Keys[1], 0x10);
}
2018-06-25 21:01:24 +02:00
}
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
private void ValidateKeys(Keyset keyset, Stream stream)
{
2018-06-20 19:42:56 +02:00
stream.Position = 0x20;
var hashKey = new byte[0x60];
stream.Read(hashKey, 0, 0x60);
Array.Copy(Keys[0], 0, hashKey, 8, 0x10);
Array.Copy(Keys[1], 0, hashKey, 0x18, 0x10);
var hash = new HMACSHA256(hashKey);
var validationMac = hash.ComputeHash(keyset.sd_card_keys[1], 0x10, 0x10);
var isValid = Util.ArraysEqual(Hmac, validationMac);
if (!isValid) throw new ArgumentException("NAX0 key derivation failed.");
2018-06-25 21:01:24 +02:00
}
2018-06-20 19:42:56 +02:00
2018-06-25 21:01:24 +02:00
public void Dispose()
2018-06-20 19:42:56 +02:00
{
2018-06-25 21:01:24 +02:00
if (!KeepOpen)
{
Stream?.Dispose();
}
2018-06-20 19:42:56 +02:00
}
}
}