Metadata-Version: 2.1
Name: data_cipher
Version: 0.0.1
Summary: Encrypting and Decrypting data
Home-page: UNKNOWN
Author: Dronikon (Nikita Derevyankin)
Author-email: <dronikosha@gmail.com>
License: UNKNOWN
Keywords: python,encrypt,decrypt,aes,blowfish
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
License-File: LICENSE


# data_cipher



The project is being finalized, plans include adding more algorithms



Developed by Nikita Derevyankin (Dronikon) (c) 2022



## Installation



```bash

$ pip install data_cipher

```



## Examples of How To Use



Advanced Encryption Standard



```python

from data_cipher import Encoder



encoder = Encoder()

message = "test"

key = "12345"

en = encoder.aes_encrypt(message, key)

de = encoder.aes_decrypt(message, key)

print("Encrypted data: ", en)

print("Decrypted data: ", de)

```



Blowfish



```python

from data_cipher import Encoder



encoder = Encoder()

message = "test"

key = "12345"

en = encoder.blowfish_encrypt(message, key)

de = encoder.blowfish_encrypt(message, key)

print("Encrypted data: ", en)

print("Decrypted data: ", de)

```

https://pypi.org/project/data_cipher/ <br>

https://github.com/dronikosha/data_cipher



