Minimalist symmetric AES image encryption module for paranoids.
Project description
Cryptemis

Minimalist symmetric AES image encryption module for paranoids.
Installation
pip3 install cryptemis
Command Line Interpreter (CLI)
export PASS=my_super_password
# Encrypt an image.
cryptemis my_image.png $PASS
# Decrypt an image.
cryptemis -d my_image.png $PASS
# Keep filenames same after encryption/decryption.
cryptemis -kfn my_image.png $PASS
cryptemis -kfn -d my_image.png $PASS
Module
from cryptemis import Cryptemis
KEEP_FILENAME = False
PASSWORD = 'my_super_password'
IMAGE_FILENAME = 'my_image.png'
ENCRYPT = True
DECRYPT = False
cryptemis = Cryptemis()
cryptemis.img_file_processor(KEEP_FILENAME, PASSWORD, IMAGE_FILENAME, ENCRYPT, DECRYPT)
PyPI
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cryptemis-0.0.7.tar.gz
(3.3 kB
view hashes)