pip install pycryptodome
-
AES256 ENCRYPT
python3 multi_crypto.py -f pesan.txt -m encrypt -t aes256 -o hasil.enc -k passwordku -
AES256 DECRYPT
python3 multi_crypto.py -f hasil.enc -m decrypt -t aes256 -o hasil.txt -k passwordku -
BASE64 ENCODE
python3 multi_crypto.py -f pesan.txt -m encode -t base64 -o hasil.txt -
BASE64 DECODE
python3 multi_crypto.py -f hasil.txt -m decode -t base64 -o original.txt -
BASE32 ENCODE
python3 multi_crypto.py -f pesan.txt -m encode -t base32 -o hasil.txt -
BASE32 DECODE
python3 multi_crypto.py -f hasil.txt -m decode -t base32 -o original.txt -
CAESAR ENCRYPT
python3 multi_crypto.py -f pesan.txt -m encrypt -t caesar -o hasil.txt -s 5 -
CAESAR DECRYPT
python3 multi_crypto.py -f hasil.txt -m decrypt -t caesar -o original.txt -s 5 -
SHA256 HASH
python3 multi_crypto.py -f pesan.txt -m hash -t sha256 -
MD5 HASH
python3 multi_crypto.py -f pesan.txt -m hash -t md5