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.

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

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)

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.2.tar.gz (3.1 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