400°
60w ago - Following up on the previous
ReActPSN v2.20 release, I have recently created a small PS3 RAP2RIF converter application for converting .RAP files from ReActPSN to .RIF file format.
Download:
ReActPSN PS3 RAP2RIF .RAP to .RIF File Converter
It is based on a my own research.
Place it to the ps3tools directory along with other tools and then place your idps and act.dat files to appropriate folders.
This tool will generate .rif file that you should copy to your exdata/ folder. Then you can unself a corresponding NPDRM file.
Have fun.
Finally, from
flatz comes the source code for RAP2RIF and RAP2RIFKey below:
RAP2RIF: pastie.org/private/yltlfwubsz8w5pyhmojyfg
// (c) flatz
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "common.h"
#include "tools.h"
static const u8 rif_header[16] = {
0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02
};
static const u8 rif_footer[16] = {
0x00, 0x00, 0x01, 0x2F, 0x41, 0x5C, 0x00, 0x00,...