Update README.md

This commit is contained in:
Silica 2018-01-12 19:24:19 +13:00 committed by GitHub
parent 0595b66488
commit 18578cfb27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ and creates an .rpgproject editable file.
Written in Python 2.7.
# How RMMV Crypto Works
RPG Maker MV's encryption is acturally really weak, you see it doesnt even encrypt the entire file, it just encrypts the header using XOR. and then writes its own RPG Maker MV header to the file with the old (now encrypted) header under it.
# How RPGMV Crypto Works
RPG Maker MV's encryption is really weak, you see it doesnt even encrypt the entire file, it just encrypts the header using XOR. and then writes its own RPG Maker MV header to the file with the old (now encrypted) header under it.
the encryption key is just an md5 hash of whatever was entered into the encryption key box under deployment in the rpg maker engine itself. and can be easily read from www\data\System.json, so all you need to do is
XOR the encrypted header using the md5 hash inside System.json as the key and remove the RPG Maker MV header.