BOT for Dokkan Battle
Find a file
Pawel Orzech 03546e2a5e Fix
2019-11-09 21:01:55 +00:00
BotZone2.8v1 Android Added bodzone for android 2019-11-09 20:56:48 +00:00
BotZone3.2 Fix 2019-11-09 21:01:55 +00:00
pysqlsimplecipher Fix 2019-11-09 21:01:55 +00:00
.gitignore just updates 2019-08-20 15:58:49 +01:00
aa.py Fix 2019-11-09 21:01:55 +00:00
BotZoneV2.7.3.py Fix 2019-11-09 21:01:55 +00:00
commands.py Fix 2019-11-09 21:01:55 +00:00
config.py Fix 2019-11-09 21:01:55 +00:00
decrypt.py Fix 2019-11-09 21:01:55 +00:00
decryptor.py Fix 2019-11-09 21:01:55 +00:00
encrypt.py Fix 2019-11-09 21:01:55 +00:00
extra.py Fix 2019-11-09 21:01:55 +00:00
help.txt Fix 2019-11-09 21:01:55 +00:00
LICENSE Fix 2019-11-09 21:01:55 +00:00
Lrfarm.py Fix 2019-11-09 21:01:55 +00:00
packet.py Fix 2019-11-09 21:01:55 +00:00
README.md Fix 2019-11-09 21:01:55 +00:00
setup.py Fix 2019-11-09 21:01:55 +00:00

pysqlsimplecipher

Encrypt or decrypt formated sqlite db.

This project is a tool for sqlite database encryption or decryption like sqlcipher without install sqlcipher.

When encrypt or decrypt database, an algorithm called AES-256-CBC is used. Each page shares the same key derived from password, but owns a random initialization vector stored at the end of the page.

Decrypt

python decrypt.py encrypted.db password output.db

Encrypt

python encrypt.py plain.db password output.db

Needs reserved space at the end of each page of the database file.

Otherwise, use sqlcipher to encrypt.

Encrypt with sqlcipher

  • Open plain db
./sqlcipher plain.db
  • Encrypt to enc.db
ATTACH DATABASE 'enc.db' as encrypted key 'testkey';
SELECT sqlcipher_export('encrypted');
DETACH DATABASE encrypted;

License

GNU Lesser General Public License Version 3