mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
9c548197c1
lots cleaned, added cia to cci conv, it 's called a block, separated reading from building, improved ncch keyx stuff, and basic verbose for keys, elf checking and romfs
14 lines
494 B
C
14 lines
494 B
C
#pragma once
|
|
#include "exheader.h"
|
|
|
|
/* ExHeader Binary Print Functions */
|
|
void exhdr_Print_ServiceAccessControl(extended_hdr *hdr);
|
|
|
|
/* ExHeader Binary Read Functions */
|
|
u8* GetAcexRsaSig(access_descriptor *acexDesc);
|
|
u8* GetAcexNcchPubKey(access_descriptor *acexDesc);
|
|
u16 GetRemasterVersion_frm_exhdr(extended_hdr *hdr);
|
|
u64 GetSaveDataSize_frm_exhdr(extended_hdr *hdr);
|
|
int GetDependencyList_frm_exhdr(u8 *Dest,extended_hdr *hdr);
|
|
void GetCoreVersion_frm_exhdr(u8 *Dest, extended_hdr *hdr);
|