BOT for Dokkan Battle
Find a file
Pawel Orzech fbc9bde494 Updated a lot
So, there are two things. First one is that I've updated bot on my own. You can use it by using dokkan.py, but there's also BotZone build (2.7..3) which works good too. Just so you know - I DID NOT DO the BotZone one.
2019-11-08 16:16:06 +00:00
__pycache__ Updated a lot 2019-11-08 16:16:06 +00:00
pysqlsimplecipher Updated a lot 2019-11-08 16:16:06 +00:00
.gitignore just updates 2019-08-20 15:58:49 +01:00
aa.py Updated a lot 2019-11-08 16:16:06 +00:00
BotZoneV2.7.3.py Updated a lot 2019-11-08 16:16:06 +00:00
commands.py Updated a lot 2019-11-08 16:16:06 +00:00
config.py Updated a lot 2019-11-08 16:16:06 +00:00
database.db Initial commit 2019-08-07 20:48:40 +01:00
dataenc_glb.db Updated a lot 2019-11-08 16:16:06 +00:00
dataenc_jp.db Updated a lot 2019-11-08 16:16:06 +00:00
decrypt.py Updated a lot 2019-11-08 16:16:06 +00:00
decryptor.py Initial commit 2019-08-07 20:48:40 +01:00
dokkan.py Initial commit 2019-08-07 20:48:40 +01:00
encrypt.py Updated a lot 2019-11-08 16:16:06 +00:00
extra.py Updated a lot 2019-11-08 16:16:06 +00:00
glb.db Updated a lot 2019-11-08 16:16:06 +00:00
help.txt Updated a lot 2019-11-08 16:16:06 +00:00
jp.db Updated a lot 2019-11-08 16:16:06 +00:00
LICENSE Updated a lot 2019-11-08 16:16:06 +00:00
Lrfarm.py Updated a lot 2019-11-08 16:16:06 +00:00
packet.py Initial commit 2019-08-07 20:48:40 +01:00
README.md Updated a lot 2019-11-08 16:16:06 +00:00
setup.py Updated a lot 2019-11-08 16:16:06 +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