Files
Decrypt9/source/decryptor/features.h
T
d0k3 f944496eb4 Added ability to deep decrypt CIAs
This is in essence a one step cryptofixer. Also, made separate menu
entries for NCCH/CIA(shallow)/CIA(deep) decryptors and reorganized menu.
2015-10-17 16:26:41 +02:00

33 lines
720 B
C

#pragma once
u32 SetNand(bool use_emunand);
u32 NcchPadgen(void);
u32 SdPadgen(void);
u32 CtrNandPadgen(void);
u32 TwlNandPadgen(void);
u32 DumpSeedsave(void);
u32 UpdateSeedDb(void);
u32 DumpTicket(void);
u32 DecryptTitlekeysFile(void);
u32 DecryptTitlekeysNand(void);
u32 DumpMovableSed(void);
u32 DumpSecureInfoA(void);
u32 InjectMovableSed(void);
u32 InjectSecureInfoA(void);
u32 DumpNand(void);
u32 DecryptAllNandPartitions(void);
u32 DecryptTwlNandPartition(void);
u32 DecryptCtrNandPartition(void);
u32 RestoreNand(void);
u32 InjectAllNandPartitions(void);
u32 InjectTwlNandPartition(void);
u32 InjectCtrNandPartition(void);
u32 DecryptNcsdNcch(void);
u32 DecryptCiaShallow(void);
u32 DecryptCiaDeep(void);