mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
- Updated AES and SHA-1 source code; - Fixed a few code warnings; - Implemented EDAT/SDAT decryption. Started SPURS implementation: - Added an internal SPURSManager class draft; - Added several drafts for cellSpurs functions. Implemented key.edat decryption in sceNpDrmIsAvailable: - NOTE: Currently, the decrypted key.edat is stored under dev_hdd1/titleID and the user must replace this file in dev_hdd0. This behavior will change in the future as it's currently intended for controlled testing only.
12 lines
181 B
C++
12 lines
181 B
C++
#include "stdafx.h"
|
|
#include "SPURSManager.h"
|
|
|
|
SPURSManager::SPURSManager(SPURSManagerAttribute *attr)
|
|
{
|
|
this->attr = attr;
|
|
}
|
|
|
|
void SPURSManager::Finalize()
|
|
{
|
|
delete this->attr;
|
|
} |