Skip to content

A package to simplify the use of AES-256 encryption with random initialization vector.

License

Notifications You must be signed in to change notification settings

MaiconRenildo/pyaes256_encrypter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyaes256_encrypter

A package to simplify the use of AES-256 encryption with random initialization vector.

Install

pip install pyaes256-encrypter

Usage

from pyaes256_encrypter import encode_text, decode_text

# text to be encrypted
text = 'hello world'
# encryption key
key = 'key'


# RANDOM ENCODED e.g. 'Dx3dCTUSXzzM8wn1L/+NHVbyaDxZFpdqe+SN2NVZgfE='
encoded = encode_text(text, key)
# 'hello world'
decoded = decode_text(encoded, key)

About

A package to simplify the use of AES-256 encryption with random initialization vector.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages