mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
123 lines
4.1 KiB
C#
123 lines
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using libhac.XTSSharp;
|
|
|
|
namespace libhac
|
|
{
|
|
public class Nax0 : IDisposable
|
|
{
|
|
public byte[] Hmac { get; private set; }
|
|
public byte[][] EncKeys { get; } = Util.CreateJaggedArray<byte[][]>(2, 0x10);
|
|
public byte[][] Keys { get; } = Util.CreateJaggedArray<byte[][]>(2, 0x10);
|
|
public long Length { get; private set; }
|
|
public Stream Stream { get; }
|
|
private bool KeepOpen { get; }
|
|
|
|
public Nax0(Keyset keyset, Stream stream, string sdPath, bool keepOpen)
|
|
{
|
|
stream.Position = 0;
|
|
KeepOpen = keepOpen;
|
|
ReadHeader(stream);
|
|
DeriveKeys(keyset, sdPath);
|
|
ValidateKeys(keyset, stream);
|
|
|
|
stream.Position = 0x4000;
|
|
var xts = XtsAes128.Create(Keys[0], Keys[1]);
|
|
Stream = new RandomAccessSectorStream(new XtsSectorStream(stream, xts, 0x4000, 0x4000), keepOpen);
|
|
}
|
|
|
|
private void ReadHeader(Stream stream)
|
|
{
|
|
var header = new byte[0x60];
|
|
stream.Read(header, 0, 0x60);
|
|
var reader = new BinaryReader(new MemoryStream(header));
|
|
|
|
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();
|
|
}
|
|
|
|
private void DeriveKeys(Keyset keyset, string sdPath)
|
|
{
|
|
for (int k = 0; k < 2; k++)
|
|
{
|
|
var naxSpecificKeys = Util.CreateJaggedArray<byte[][]>(2, 0x10);
|
|
var hashKey = new byte[0x10];
|
|
Array.Copy(keyset.sd_card_keys[k], hashKey, 0x10);
|
|
|
|
var hash = new HMACSHA256(hashKey);
|
|
var sdPathBytes = Encoding.ASCII.GetBytes(sdPath);
|
|
var checksum = hash.ComputeHash(sdPathBytes, 0, sdPathBytes.Length);
|
|
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);
|
|
}
|
|
}
|
|
|
|
private void ValidateKeys(Keyset keyset, Stream stream)
|
|
{
|
|
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.");
|
|
}
|
|
|
|
public static Nax0 CreateFromPath(Keyset keyset, string path, string sdPath)
|
|
{
|
|
List<string> files = new List<string>();
|
|
List<Stream> streams = new List<Stream>();
|
|
|
|
if (Directory.Exists(path))
|
|
{
|
|
while (true)
|
|
{
|
|
var partName = Path.Combine(path, $"{files.Count:D2}");
|
|
if (!File.Exists(partName)) break;
|
|
|
|
files.Add(partName);
|
|
}
|
|
|
|
}
|
|
else if (File.Exists(path))
|
|
{
|
|
files.Add(path);
|
|
}
|
|
else
|
|
{
|
|
throw new FileNotFoundException("Could not find the input file or directory");
|
|
}
|
|
|
|
foreach (var file in files)
|
|
{
|
|
streams.Add(new FileStream(file, FileMode.Open));
|
|
}
|
|
|
|
var stream = new CombinationStream(streams);
|
|
return new Nax0(keyset, stream, sdPath, false);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (!KeepOpen)
|
|
{
|
|
Stream?.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|