Pycrypto based Simple And Easy Cipher on AES
Project description
Pycrypto based Simple And Easy AES Cipher
Dependencies
Python 2.7 or later
Pycrypto 2.6.1 or later
Install
$ pip install Simple-AES-Cipher
Usage
from simple_aes_cipher import AESCipher, generate_secret_key
pass_phrase = "hogefuga"
secret_key = generate_secret_key(pass_phrase)
# generate cipher
cipher = AESCipher(secret_key)
raw_text = "abcdefg"
encrypt_text = cipher.encrypt(raw_text)
assert raw_text != encrypt_text
decrypt_text = cipher.decrypt(encrypt_text)
assert encrypt_text != decrypt_text
assert decrypt_text == raw_text
LICENSE
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Simple-AES-Cipher-1.0.7.tar.gz
.
File metadata
- Download URL: Simple-AES-Cipher-1.0.7.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba83df87ff16bed219f6d4d2eb6aa9d961ec81a6a3c6fdf2b152c9d9ee270ef7 |
|
MD5 | a45a617a918f8ef616ea0782bdf17765 |
|
BLAKE2b-256 | 6b6f29d1e26e47cd775870534a1600d6fb9187b5ebaa4e401623b6203c676b57 |