Skip to main content

Minimalist symmetric AES image encryption module for paranoids.

Project description

Cryptemis

Cryptemis PyPI Repository Size GitHub License

Minimalist symmetric AES image encryption module for paranoids.

asciicast

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

https://pypi.org/project/cryptemis/

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)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page