mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
- Removed all scetool dependencies; - Implemented a key vault to manage PS3 keys internally; - Implemented SELF decryption; - Improved PKG handling. Notes: - NPDRM SELF files (EBOOT.BIN) can also be decrypted. A valid matching RAP file must be placed under the dev_usb000 folder. - The source code is considerably commented and several debugging functions were also added in order to aid anyone who wishes to contribute to the engine.
7 lines
168 B
C
7 lines
168 B
C
#pragma once
|
|
|
|
u16 swap16(u16 i);
|
|
u32 swap32(u32 i);
|
|
u64 swap64(u64 i);
|
|
u64 hex_to_u64(const char* hex_str);
|
|
void hex_to_bytes(unsigned char *data, const char *hex_str); |