mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
119 lines
4.1 KiB
C#
119 lines
4.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using libhac;
|
|
|
|
namespace hactoolnet
|
|
{
|
|
public static class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Listing NCA files");
|
|
ListSdContents(args);
|
|
|
|
Console.WriteLine("Listing titles");
|
|
var watch = Stopwatch.StartNew();
|
|
|
|
DumpMeta(args);
|
|
watch.Stop();
|
|
Console.WriteLine(watch.Elapsed.TotalMilliseconds);
|
|
}
|
|
|
|
static void DecryptNax0(string[] args)
|
|
{
|
|
var keyset = ExternalKeys.ReadKeyFile(args[0]);
|
|
keyset.SetSdSeed(args[1].ToBytes());
|
|
|
|
using (var nax0 = Nax0.CreateFromPath(keyset, args[2], args[3]))
|
|
{
|
|
var nca = new Nca(keyset, nax0.Stream, true);
|
|
|
|
using (var output = new FileStream(args[4], FileMode.Create))
|
|
using (var progress = new ProgressBar())
|
|
{
|
|
progress.LogMessage($"Title ID: {nca.Header.TitleId:X16}");
|
|
progress.LogMessage($"Writing {args[4]}");
|
|
nax0.Stream.CopyStream(output, nax0.Stream.Length, progress);
|
|
}
|
|
}
|
|
}
|
|
|
|
static void ListSdContents(string[] args)
|
|
{
|
|
Console.WriteLine($"Using key file {args[0]}");
|
|
Console.WriteLine($"SD seed {BitConverter.ToString(args[1].ToBytes())}");
|
|
Console.WriteLine($"SD path {args[2]}");
|
|
var keyset = ExternalKeys.ReadKeyFile(args[0]);
|
|
|
|
if (keyset.master_keys[0].IsEmpty())
|
|
{
|
|
Console.WriteLine("Need master key 0");
|
|
}
|
|
|
|
keyset.SetSdSeed(args[1].ToBytes());
|
|
using (var sdfs = new SdFs(keyset, args[2]))
|
|
{
|
|
sdfs.OpenAllNcas();
|
|
|
|
foreach (Nca nca in sdfs.Ncas)
|
|
{
|
|
Console.WriteLine(
|
|
$"{nca.Header.TitleId:X16} {nca.Header.ContentType.ToString().PadRight(10, ' ')} {nca.Name}");
|
|
}
|
|
}
|
|
}
|
|
|
|
static void DumpMeta(string[] args)
|
|
{
|
|
var keyset = ExternalKeys.ReadKeyFile(args[0]);
|
|
keyset.SetSdSeed(args[1].ToBytes());
|
|
List<Nca> ncas;
|
|
using (var sdfs = new SdFs(keyset, args[2]))
|
|
{
|
|
sdfs.OpenAllNcas();
|
|
ncas = sdfs.Ncas;
|
|
|
|
var metadata = new List<Cnmt>();
|
|
|
|
using (var progress = new ProgressBar())
|
|
{
|
|
foreach (var nca in ncas.Where(x => x.Header.ContentType == ContentType.Meta))
|
|
{
|
|
foreach (var section in nca.Sections.Where(x => x.Header.FsType == SectionFsType.Pfs0))
|
|
{
|
|
var sect = nca.OpenSection(section.SectionNum);
|
|
var pfs0 = new Pfs0(sect);
|
|
|
|
foreach (var entry in pfs0.Entries)
|
|
{
|
|
var path = Path.Combine("meta", entry.Name);
|
|
Directory.CreateDirectory(Path.GetDirectoryName(path));
|
|
var file = pfs0.GetFile(entry.Index);
|
|
|
|
metadata.Add(new Cnmt(new MemoryStream(file)));
|
|
File.WriteAllBytes(path, file);
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach (var meta in metadata.OrderBy(x => x.TitleId))
|
|
{
|
|
progress.LogMessage($"{meta.TitleId:X16} v{meta.TitleVersion} {meta.Type}");
|
|
|
|
foreach (var content in meta.ContentEntries)
|
|
{
|
|
// Add an actual hexdump function
|
|
progress.LogMessage(
|
|
$" {BitConverter.ToString(content.NcaId).Replace("-", "")}.nca {content.Type}");
|
|
}
|
|
|
|
progress.LogMessage("");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|