Skip to content

This is a module that simplifies the use of modern encoding algorithms

License

Notifications You must be signed in to change notification settings

dronikosha/data_cipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

data_cipher

The project is being finalized, plans include adding more algorithms

Developed by Nikita Derevyankin (Dronikon) (c) 2022

Installation

$ pip install data-cipher

Examples of How To Use

Advanced Encryption Standard

from data_cipher import Encoder

encoder = Encoder()
message = "test"
key = "12345"
en = encoder.aes_encrypt(message, key)
de = encoder.aes_decrypt(en, key)
print("Encrypted data: ", en)
print("Decrypted data: ", de)

Blowfish

from data_cipher import Encoder

encoder = Encoder()
message = "test"
key = "12345"
en = encoder.blowfish_encrypt(message, key)
de = encoder.blowfish_encrypt(en, key)
print("Encrypted data: ", en)
print("Decrypted data: ", de)

https://pypi.org/project/data_cipher/
https://github.com/dronikosha/data_cipher

About

This is a module that simplifies the use of modern encoding algorithms

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages