forked from John-K/pspdecrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pspdecrypt_lib.h
105 lines (91 loc) · 2.83 KB
/
pspdecrypt_lib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#ifndef __PSPDECRYPT_H__
#define __PSPDECRYPT_H__
#include <string>
#include "CommonTypes.h"
/**
* Sign checks a buffer
*
* @param buf - The input/output buffer
*
* @returns 0 on success, < 0 on error
*/
int pspSignCheck(u8 *buf);
/**
* Unsign checks a buffer
*
* @param buf - The input/output buffer
*
* @returns 0 on success, < 0 on error
*/
int pspUnsignCheck(u8 *buf);
/**
* Checks if a ~PSP file is sign checked
*
* @param buf - The buffer
*
* @returns 1 if signchecked, 0 otherwise
*/
int pspIsSignChecked(u8 *buf);
/**
* Decrypts the first stage of IPL
*
* @param pbIn - The input buffer
* @param pbOut - The output buffer that receives the decoded data
* @param cbIn - The size of the encrypted data
*
* @returns the size of the decrypted data (= 0 on error)
*/
int pspDecryptIPL1(const u8* pbIn, u8* pbOut, int cbIn, std::string &logStr);
/**
* Linearalizes the decrypted first stage of IPL
*
* @param pbIn - The input buffer
* @param pbOut - The output buffer
* @param cbIn - The size of input
*
* @returns the size of the linearalized data on success, 0 on error
*/
int pspLinearizeIPL2(const u8* pbIn, u8* pbOut, int cbIn, u32 *startAddr);
/**
* Decrypts the IPL payload, only valid for 1.00-2.50 IPL
*
* @param pbIn - The input buffer containing the linearilized first stage
* @param pbOut - The buffer that receives the decoded data
* @param cbIn - The size of input
*
* @returns the size of the decrypted payload on success, 0 on error
*/
int pspDecryptIPL3(const u8* pbIn, u8* pbOut, int cbIn);
int decryptIPL(u8 *inData, u32 inDataSize, int version, const char *filename, std::string outdir, u8 *preipl, u32 preiplSize, bool verbose, bool keepAll, std::string &logStr);
/**
* Checks if buffer is compressed
*
* @param buf - The buffer
*
* @returns 1 if compressed, 0 otherwise
*/
int pspIsCompressed(u8 *buf);
/**
* Decompresses a GZIP or 2RLZ data
*
* @param inbuf - The input buffer with the compressed data
* @param outbuf - The output buffer that receives the decompressed data
* @param outcapacity - The max capacity of the output buffer
* @param inbufEnd - Pointer to the end of the compressed stream of the input buffer
*
* @returns the size of the decompressed data on success, < 0 on error
*/
int pspDecompress(u8 *inbuf, u32 insize, u8 *outbuf, u32 outcapacity, std::string &logStr, u8 **inbufEnd = NULL);
/**
* Decrypts a file table (3.70+)
*
* @param buf1 - The input/output buffer
* @param buf2 - Buffer for temporal use by the decoder
* @param size - The size of input
* @param psarVersion - The PSAR version
* @param mode - The mode
*
* @returns the size of the decrypted table on success, < 0 on error
*/
int pspDecryptTable(u8 *buf1, u8 *buf2, int size, int psarVersion, int mode);
#endif