A flexible Mutable Symmetric Encryption algorithm
Project description
FMEA (Flexible Modifiable Encryption Algorithm)
A flexible EXPERIMENTAL Encryption algorithm with FNNH
hash algorithm (a Hashing algorithm i made earlier) with used defined block size decleration and data size dependent Encryption.
WARNING: This is a Experimental Encryption Algorithm
HOW TO USE
- Run the Command
pip install FMEA
in your python ENV. - and to use the algo write :
from FMEA import FMEA
plain_text = "qwerty"
password = "123"
streass = 1
blocksize = 64
#mode = 1 is for encrypting the data
cipher_text = FMEA(plain_text,password,mode=1,blocksize,stress)
#mode = 2 is for encrypting the data
plain_text = FMEA(ciphertext,password,mode=2,blocksize,stress)
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
FMEA-0.0.1.tar.gz
(2.5 kB
view hashes)
Built Distribution
FMEA-0.0.1-py3-none-any.whl
(15.1 kB
view hashes)