From 19ce5cbd4b430fdbeedbdb20b593e2d7b723cfa8 Mon Sep 17 00:00:00 2001 From: Downforce Agent Date: Mon, 1 Jul 2024 14:41:41 -0400 Subject: [PATCH] Update Decrypting Original PSARC Files --- Decrypting-Original-PSARC-Files.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Decrypting-Original-PSARC-Files.md b/Decrypting-Original-PSARC-Files.md index 54154e6..bce3131 100644 --- a/Decrypting-Original-PSARC-Files.md +++ b/Decrypting-Original-PSARC-Files.md @@ -26,14 +26,20 @@ This guide assumes you are using a genuine copy with Sony's DRM over it, that yo - Also double-check grw0:/ for cartridges if the partition exists. ## HD Fury DLC -***WIP*** -1. Download pkg_dec: Windows | [Linux](https://files.worlio.com/users/bonkmaykr/http/firestar/pkg_dec) +1. Download [pkg2zip](https://github.com/mmozeiko/pkg2zip/releases/) and [psvpfsparser](https://github.com/motoharu-gosuto/psvpfstools/releases) 2. Open an FTP connection to VitaShell and copy over all of the licenses in ux0:/nonpdrm/license/addcont/(your Title ID) + - If you want, you can also use a pirated zRIF from the NoPayStation link in step 3. It's hard to enforce copyright on a random string of letters ;) 3. Download the DLC PKGs appropriate for your region [here](https://nopaystation.com/search?query=wipeout&platform=psv&category=dlc&limit=10&orderBy=completionDate&sort=DESC&missing=Show). You need to look for DLC1W2048PACKAGE (WipEout HD Add-On Pack) and DLC2W2048PACKAGE (WipEout HD Fury Add-On Pack). -4. Use pkg_dec to decrypt each package file with it's corresponding key, for example: + - Dumps from a Vita with the DLC already installed have been "tainted" and likely won't work, which is why we are using NPS. +4. Use pkg2zip to extract each package file with it's corresponding key, for example: ``` - ./pkg_dec --make-dirs=id --license=dlc/DLC1W2048PACKAGE/6488b73b912a753a492e2714e9b38bc7.rif dlc1.pkg - ./pkg_dec --make-dirs=id --license=dlc/DLC2W2048PACKAGE/6488b73b912a753a492e2714e9b38bc7.rif dlc2.pkg + pkg2zip.exe -x dlc1.pkg KO5ifR1dQ+eHBlgi6TI0Bdnv4uNsGG5kYGIR4Ojs7ejuis9/anXfuudVNvzgdu+9z1z+asJojA9uAACgRhTl + pkg2zip.exe -x dlc2.pkg KO5ifR1dQ+eHBlgi6TI0Bdnv4uNsFG5kYGIR4Ojs7ejuis9/3fydBRm3eCJX7biz/vVTm/2jMT64AQCCYhVy ``` -5. Copy the decrypted PSARCs to your ~/.firestar/ folder. \ No newline at end of file +5. Then use psvpfsparser to decrypt the folders: + ``` + psvpfsparser.exe -i addcont/PCSA00015/DLC1W2048PACKAGE -o ./ -z KO5ifR1dQ+eHBlgi6TI0Bdnv4uNsGG5kYGIR4Ojs7ejuis9/anXfuudVNvzgdu+9z1z+asJojA9uAACgRhTl -f cma.henkaku.xyz + psvpfsparser.exe -i addcont/PCSA00015/DLC2W2048PACKAGE -o ./ -z KO5ifR1dQ+eHBlgi6TI0Bdnv4uNsFG5kYGIR4Ojs7ejuis9/3fydBRm3eCJX7biz/vVTm/2jMT64AQCCYhVy -f cma.henkaku.xyz + ``` +6. Copy the decrypted PSARCs to your ~/.firestar/ folder. \ No newline at end of file