Skip to main content

An ultra-lightweight library to securely encrypt any file with AES.

Project description

easy-aes is an ultra-lightweight, pure-python library for doing AES encryption. It draws heavily on the popular crypto library, simplifying AES encryption and decryption of files to a single function each.

Usage

Simple usage follows this pattern:

import easy-aes
encrypt_me = "my_transcript.pdf"
output_file = easy-aes.encrypt_file(encrypt_me)

output_file is a string with the new file name.

WARNING: IF YOU FORGET YOUR PASSWORD AND DELETE THE ORIGINAL DATA, YOUR FILE WILL NOT BE ABLE TO BE RETRIEVED!

import easy-aes
encrypted_file = "my_encrypted_filename.aes"
binary_data = easy-aes.decrypt_file(encrypted_file)
with open('my_new_file.aaa','wb') as new_file:
  new_file.write(decrypted_data)

decrypt_file returns a Python object containing the now-decrypted data.

Installation

easy-aes works Python 3.3+. To install it, use:

$ pip install easy-aes

0.1

Released on September 10, 2016

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

easyaes-0.123.zip (2.7 kB view details)

Uploaded Source

File details

Details for the file easyaes-0.123.zip.

File metadata

  • Download URL: easyaes-0.123.zip
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for easyaes-0.123.zip
Algorithm Hash digest
SHA256 3f4b2190460fe5b38ea302211def8523f0bf8def490996e2cac8e23aece083a3
MD5 a36a9e63b354572857677c2b35b59783
BLAKE2b-256 039dcebc89bfc9abb42414fa059fc215334c74cfa2bdef672c7c9b11fe387cbd

See more details on using hashes here.

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