mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
f1b420eb3b
SELF decrypter improved:
The files 'scetool.exe' and 'zlib1.dll' are no longer needed. Everything
needed is now included in the rpsc3 project. So the only thing you need
in order to load SELF files are the keys. More information about this
matter in my last commit: c1565e55
Warning for devs! There is a lot of spaghetti code in /scetool/. I
fucked up things a bit while trying to include scetool in rpcs3. There
is a lot of unused code there and I need to make sure that everything is
working properly. In any case, the code seems to work stable so
end-users shouldn't be worried about this warning. ;-)
'About...' dialog added:
Well, I have nothing more to say here. I wish you all a nice day!
85 lines
2.2 KiB
C
85 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2011-2013 by naehrwert
|
|
* This file is released under the GPLv2.
|
|
*/
|
|
|
|
#ifndef _RVK_H_
|
|
#define _RVK_H_
|
|
|
|
#include "types.h"
|
|
#include "sce.h"
|
|
|
|
/*
|
|
header:
|
|
00000200 00 00 00 04 00 00 00 01 00 03 00 41 00 00 00 00
|
|
00000210 00 00 00 06 00 00 00 00 00 00 00 00 00 00 00 00
|
|
body:
|
|
00000220 00 00 00 03 00 00 00 01 00 03 00 41 00 00 00 00 00 00 00 00 00 00 00 02 FF FF FF FF FF FF FF FF
|
|
00000240 00 00 00 04 00 00 00 01 00 03 00 41 00 00 00 00 10 70 00 05 FF 00 00 01 FF FF FF FF FF FF FF FF
|
|
00000260 00 00 00 04 00 00 00 01 00 03 00 41 00 00 00 00 10 70 00 05 FE 00 00 01 FF FF FF FF FF FF FF FF
|
|
00000280 00 00 00 04 00 00 00 01 00 03 00 41 00 00 00 00 10 70 00 05 FD 00 00 01 FF FF FF FF FF FF FF FF
|
|
000002A0 00 00 00 04 00 00 00 01 00 03 00 41 00 00 00 00 10 70 00 05 FC 00 00 01 FF FF FF FF FF FF FF FF
|
|
000002C0 00 00 00 04 00 00 00 03 00 01 00 00 00 00 00 00 10 70 00 04 00 00 00 01 FF FF FF FF FF FF FF FF
|
|
*/
|
|
|
|
/*
|
|
0 self != rvk
|
|
1 self == rvk
|
|
2 !(rvk <= self) -> self < rvk
|
|
3 self <= rvk
|
|
4 !(self <= rvk) -> self > rvk
|
|
5 rvk <= self -> self >= rvk
|
|
*/
|
|
#define CHECK_SELF_NEQU_RVK 0
|
|
#define CHECK_SELF_EQU_RVK 1
|
|
#define CHECK_SELF_LT_RVK 2
|
|
#define CHECK_SELF_LTEQU_RVK 3
|
|
#define CHECK_SELF_GT_RVK 4
|
|
#define CHECK_SELF_GTEQU_RVK 5
|
|
|
|
/*! RVK header. */
|
|
typedef struct _rvk_header
|
|
{
|
|
scetool::u32 type_0;
|
|
scetool::u32 type_1;
|
|
scetool::u64 opaque; //Program revoke: version, Package revoke: unknown.
|
|
scetool::u32 entcnt;
|
|
scetool::u8 padding[12];
|
|
} rvk_header_t;
|
|
|
|
static inline void _es_rvk_header(rvk_header_t *h)
|
|
{
|
|
h->type_0 = _Es32(h->type_0);
|
|
h->type_1 = _Es32(h->type_1);
|
|
h->opaque = _Es64(h->opaque);
|
|
h->entcnt = _Es32(h->entcnt);
|
|
}
|
|
|
|
/*! Program revoke list entry. */
|
|
typedef struct _prg_rvk_entry
|
|
{
|
|
scetool::u32 self_type; //3, 4
|
|
scetool::u32 check_type;
|
|
scetool::u64 version;
|
|
union
|
|
{
|
|
scetool::u64 auth_id;
|
|
scetool::u64 unk_3;
|
|
};
|
|
scetool::u64 mask;
|
|
} prg_rvk_entry_t;
|
|
|
|
static inline void _es_prg_rvk_entry(prg_rvk_entry_t *e)
|
|
{
|
|
e->self_type = _Es32(e->self_type);
|
|
e->check_type = _Es32(e->check_type);
|
|
e->version = _Es64(e->version);
|
|
e->auth_id = _Es64(e->auth_id);
|
|
e->mask = _Es64(e->mask);
|
|
}
|
|
|
|
/*! Print RVK infos. */
|
|
void rvk_print(FILE *fp, sce_buffer_ctxt_t *ctxt);
|
|
|
|
#endif
|