Defauf escribió:SrX escribió:JulesRussel escribió:@SrX Ahi no hay nada de nsz a xci. En teoría no debería de haber hecho si quiera nada
. Hablaba de que lo añadí ayer a la rama beta antes de acostarme y estaba funcionando correctamente, no que lo hubiese sacado en releases ni que estuviera listo. Antes quiero añadir el soporte completo y hacer más pruebas. Pero sí, ahora mismo la venta funciona específicamente en el modo 2 con nsz y xcz como input siempre y cuando no se elija output como para fat32.
Ok todo claro ahora!
Esperando que saques una releases con esto incluido en breve, que parece que los .nsz han llegado para quedarse.
ha llegado para quedarse porque os lo han metido a la fuerza básicamente.
@DefaufNSZ
NSZ files are not a real format, they are functionally identical to NSP files. Their sole purpose to alert the user that it contains compressed NCZ files. NCZ files can be mixed with NCA files in the same container.
XCZ
XCZ files are not a real format, they are functionally identical to XCI files. Their sole purpose to alert the user that it contains compressed NCZ files. NCZ files can be mixed with NCA files in the same container.
NCZ
These are compressed NCA files. The NCA's are decrypted, and then compressed using zstandard. Only NCA's with a 0x4000 byte header are supported (CNMT nca's are not supported).
The first 0x4000 bytes of a NCZ file is exactly the same as the original NCA (its still encrypted as well).
At 0x4000, there will be a variable sized NCZ Header structure. This header contains a list of sections which tell the decompressor how to re-encrypt the NCA data after decompression.
All of the information in the header can be derived from the original NCA + Ticket, however it is provided preparsed to make decompression as easy as possible for third parties.
Directly after the NCZ header, the zstandard stream begins and ends at EOF. The stream is decompressed to offset 0x4000.
class NczHeader
{
public:
class Section
{
public:
u64 offset;
u64 size;
u8 cryptoType;
u8 padding1[7];
u64 padding2;
integer<128> cryptoKey;
integer<128> cryptoCounter;
} PACKED;
const bool isValid()
{
return m_magic == MAGIC && m_sectionCount < 0xFFFF;
}
const u64 size() const
{
return sizeof(m_magic) + sizeof(m_sectionCount) + sizeof(Section) * m_sectionCount;
}
const Section& section(u64 i) const
{
return m_sections[i];
}
protected:
u64 m_magic;
u64 m_sectionCount;
Section m_sections[1];
static const u64 MAGIC = 0x4E544345535A434E;
} PACKED;
Compressor script
Requires hactool compatible keys.txt to be present with nsz.py. Only currently works on base titles (no patches or DLC), but can be updated to work on them later.
example usage: nsz.py --level 17 -C title1.nsp title2.nsp title3.nsp
will generate title1.nsz title2.nsz title3.nsz
by blawar.
Y esto quien lo impone?