And one more of my old projects. I guess I'm in generous mood. 
ops2m-1.1.tar.gz

Code:
---========--- About ops2m ---===========--- All OPS2M demo discs contain an encrypted config file that determines how the demo's GUI looks like (menus, colors, selectable games/videos etc.) and how the playable games are started (path to ELF, IOP image to use, play time etc.). The config file is named SCEE_DD/CONFIG.TXT or SCEE_DD/CONFIG.DD2 (older demos). You can use ops2m to decrypt/modify/encrypt those config files. ---==--- Build ---=====--- To compile ops2m, you need CMake and a C compiler like gcc. I recommend doing an out-of-source build: $ mkdir build $ cd build $ cmake ../src/ $ make To install ops2m: # make install ---==--- Usage ---=====--- usage: ops2m <input file> <output file> [-d|-e] This will decrypt or encrypt the config file <input file> to <output file> using the new scheme (file SCEE_DD/CONFIG.TXT, symmetric cipher). options: -d decrypt using old scheme (file SCEE_DD/CONFIG.DD2) -e encrypt using old scheme (file SCEE_DD/CONFIG.DD2)
Comment