VitaSmith / pkg2zip

Decrypts PlayStation Vita pkg file and packages to zip archive

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pkg2zip

Utility that decrypts PlayStation Vita pkg file and creates zip package.

Optionally saves NoNpDrm license into work.bin file. You must provide license key.

Features

  • portable, written in cross-platform C code, runs on Windows, GNU/Linux, macOS (system dependent functionality is isolated in sys.c file).
  • small, uses zero dynamic memory allocations and has no external library dependencies.
  • fast, uses AESNI hardware accelerated AES decryption if supported by CPU (requires AESNI and SSSE3 instructions).
  • simple, creates zip package with same folder structure that Vita expects (just drag & drop all file from zip archive to ux0:). Zip file is created directly from pkg without any intermediate temporary files.

Limitations:

  • currently works only for main application pkg files, no DLC.

Usage

Execute pkg2zip package.pkg to create title [id] [region].zip file. Title, ID and region is automatically detected from pkg file.

If you have raw license key (32 hex characters) you can execute pkg2zip package.pkg hexkey to try to generate work.bin file (works for most pkg files).

If you have working zRIF string, then execute pkg2zip package.pkg zRIF_string to create work.bin file from zRIF encoding.

Generating zRIF string

If you have working main.bin file you can create zRIF string with rif2zrif.py python script:

$ python rif2zrif.py path/to/main.bin

It will print zRIF string to stdout.

To generate main.bin from zRIF string use zrif2rif.py script:

$ python zrif2rif.py zRIF work.bin

Last argument is optional, it specifies where to save file and defaults to work.bin name.

Download

Get latest Windows binaries here.

ArchLinux users can build binary with pkg2zip package in AUR repository. For example, with pacaur:

$ pacaur -S pkg2zip

Building

Execute make if you are on GNU/Linux or macOS.

On Windows you can build either with MinGW (get MinGW-w64) or Visual Studio 2017 Community Edition.

  • for MinGW make sure you have make installed, and then execute mingw32-make
  • for Visual Studio run build.cmd

Alternatives

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

About

Decrypts PlayStation Vita pkg file and packages to zip archive

License:The Unlicense


Languages

Language:C 94.5%Language:Objective-C 2.1%Language:Python 1.6%Language:C++ 0.8%Language:Makefile 0.7%Language:Batchfile 0.4%