Skip to content
View in the app

A better way to browse. Learn more.

ResHax

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.
Help us keep the site running.

Prison Princess Save files (*.svd)

Featured Replies

  • Author
  • Localization

Ekey, posted Thu Aug 20, 2020 12:30 pm (58212)


Saves location in >
Code:
C:\Users\USERNAME\AppData\LocalLow\qureate\Prison Princess\

svd is a encrypted JSON file

Snipped code for decrypt and encrypt on CSharp

Code:
        public byte[] Encrypt(byte[] binData)
        {
            RijndaelManaged rijndaelManaged = new RijndaelManaged();
            rijndaelManaged.Padding = PaddingMode.Zeros;
            rijndaelManaged.Mode = CipherMode.CBC;
            rijndaelManaged.KeySize = 256;
            rijndaelManaged.BlockSize = 128;
            byte[] rgbKey = new byte[0];
            byte[] rgbIV = new byte[0];
            rgbKey = Encoding.UTF8.GetBytes("w5qdv9jr7a6is98235kiqvhuhfqncacf");
            rgbIV = Encoding.UTF8.GetBytes("ptmcyvrtk2c83yji");
            ICryptoTransform transform = rijndaelManaged.CreateEncryptor(rgbKey, rgbIV);
            MemoryStream memoryStream = new MemoryStream();
            CryptoStream cryptoStream = new CryptoStream(memoryStream, transform, CryptoStreamMode.Write);
            cryptoStream.Write(binData, 0, binData.Length);
            cryptoStream.FlushFinalBlock();
            return memoryStream.ToArray();
        }

        public static byte[] Decrypt(byte[] binData)
        {
            RijndaelManaged rijndaelManaged = new RijndaelManaged();
            rijndaelManaged.Padding = PaddingMode.Zeros;
            rijndaelManaged.Mode = CipherMode.CBC;
            rijndaelManaged.KeySize = 256;
            rijndaelManaged.BlockSize = 128;
            byte[] rgbKey = new byte[0];
            byte[] rgbIV = new byte[0];
            rgbKey = Encoding.UTF8.GetBytes("w5qdv9jr7a6is98235kiqvhuhfqncacf");
            rgbIV = Encoding.UTF8.GetBytes("ptmcyvrtk2c83yji");
            ICryptoTransform transform = rijndaelManaged.CreateDecryptor(rgbKey, rgbIV);
            byte[] array = new byte[binData.Length];
            new CryptoStream(new MemoryStream(binData), transform, CryptoStreamMode.Read).Read(array, 0, array.Length);
            return array;
        }
  • Author
  • Localization

aluigi, posted Fri Aug 21, 2020 9:40 am (58238)


Is this correct?
Code:
encryption "DecryptFinal aes_256_cbc" "w5qdv9jr7a6is98235kiqvhuhfqncacf" "ptmcyvrtk2c83yji"
get SIZE asize
log "decrypted.dat" 0 SIZE
  • Author
  • Localization

Ekey, posted Fri Aug 21, 2020 10:43 am (58239)


I think it will work.
Guest
This topic is now closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.