mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
37 lines
885 B
C
37 lines
885 B
C
|
#ifndef FUSEE_PACKAGE2_H
|
||
|
#define FUSEE_PACKAGE2_H
|
||
|
|
||
|
/* This is a library for patching Package2 prior to handoff to Exosphere. */
|
||
|
|
||
|
#define MAGIC_PK21 (0x31324B50)
|
||
|
#define PACKAGE2_SIZE_MAX 0x7FC000
|
||
|
#define PACKAGE2_SECTION_MAX 0x3
|
||
|
|
||
|
typedef struct {
|
||
|
union {
|
||
|
uint8_t ctr[0x10];
|
||
|
uint32_t ctr_dwords[0x4];
|
||
|
};
|
||
|
uint8_t section_ctrs[4][0x10];
|
||
|
uint32_t magic;
|
||
|
uint32_t entrypoint;
|
||
|
uint32_t _0x58;
|
||
|
uint8_t version_max; /* Must be > TZ value. */
|
||
|
uint8_t version_min; /* Must be < TZ value. */
|
||
|
uint16_t _0x5E;
|
||
|
uint32_t section_sizes[4];
|
||
|
uint32_t section_offsets[4];
|
||
|
uint8_t section_hashes[4][0x20];
|
||
|
} package2_meta_t;
|
||
|
|
||
|
typedef struct {
|
||
|
uint8_t signature[0x100];
|
||
|
union {
|
||
|
package2_meta_t metadata;
|
||
|
uint8_t encrypted_header[0x100];
|
||
|
};
|
||
|
} package2_header_t;
|
||
|
|
||
|
void package2_patch(void *package2_address);
|
||
|
|
||
|
#endif
|