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
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_KERNEL_NPDRM_H
#define _VDSUITE_KERNEL_NPDRM_H
#include <scetypes.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct SceNpDrmLicense { // size is 0x200
SceInt16 version; // -1, 1
SceInt16 version_flags; // 0, 1
SceInt16 license_type; // 1
SceInt16 license_flags; // 0x400:non-check ecdsa
SceUInt64 account_id;
char content_id[0x30];
char key_table[0x10];
char key1[0x10];
SceInt64 start_time;
SceInt64 expiration_time;
char ecdsa_signature[0x28];
SceInt64 flags;
char key2[0x10];
char unk_0xB0[0x10];
char open_psid[0x10];
char unk_0xD0[0x10];
char cmd56_handshake_part[0x14];
int debug_upgradable;
int unk_0xF8;
int sku_flag;
char rsa_signature[0x100];
} SceNpDrmLicense;
/**
* Get license file name
*
* @param[out] name - The pointer of license file name output buffer. size is 0x30.
* @param[in] aid - The license account id
*
* @return 0 on success, < 0 on error.
*/
int sceNpDrmGetRifName(char *name, SceUInt64 aid);
/**
* Get license file name with fixed
*
* @param[out] name - The pointer of license file name output buffer. size is 0x30.
* @param[in] aid - The license account id
*
* @return 0 on success, < 0 on error.
*/
int sceNpDrmGetFixedRifName(char *name, SceUInt64 aid);
/**
* Get license key info
*
* @param[in] license - The pointer of license data. see:SceNpDrmLicense
* @param[out] klicense - The pointer of klicense output buffer. size is 0x10.
* @param[out] flags - The pointer of flags output.
* @param[out] sku_flags - The pointer of sku flags output.
* @param[out] lic_start_time - The pointer of license start time output.
* @param[out] lic_exp_time - The pointer of license exp time output.
*
* @return 0 on success, < 0 on error.
*/
int sceNpDrmGetRifVitaKey(const void *license, void *klicense, int *flags, int *sku_flags, SceUInt64 *lic_start_time, SceUInt64 *lic_exp_time);
/**
* Get license info
*
* @param[in] license - The pointer of license data. see:SceNpDrmLicense
* @param[in] license_size - The license data size. 0x200 etc
* @param[in] check_sign - The license signature check flag. if pass 1, do check.
* @param[out] content_id - The pointer of license content_id output buffer. size is 0x30.
* @param[out] account_id - The pointer of license account_id output.
* @param[out] license_version - The pointer of license version output.
* @param[out] license_flags - The pointer of license flags output.
* @param[out] flags - The pointer of flags output.
* @param[out] sku_flags - The pointer of sku flags output.
* @param[out] lic_start_time - The pointer of license start time output.
* @param[out] lic_exp_time - The pointer of license exp time output.
* @param[out] flags2 - The pointer of flags2 output.
*
* @return 0 on success, < 0 on error.
*/
int sceNpDrmGetRifInfo(const void *license, SceSize license_size, int check_sign, char *content_id, SceUInt64 *account_id, int *license_version, int *license_flags, int *flags, int *sku_flags, SceInt64 *lic_start_time, SceInt64 *lic_exp_time, SceUInt64 *flags2);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_KERNEL_NPDRM_H */
|