Metadata-Version: 2.1
Name: encryptedcode
Version: 1.1.9
Summary: This library can be used to encrypt and decrypt passwords using the new L0123 algorithm.
Home-page: https://github.com/leoGlez01/encrypted-code.git
Author: Leandro Gonzalez Espinosa
Author-email: lworkgonzalez01@gmail.com
License: MIT
Keywords: encrypted,encode,decode,algorithm,Leandro Gonzalez Espinosa,Leandro Gonzalez,Glez Dev
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: cryptography>=3.4.7

<h1>Encrypted Code - L0123 Algorithm</h1>

### EncryptedCode is a python library accessible to everyone that is under improvements where I use a new encryption algorithm created by &copy; Software Engineer <a href="https://leoglez.vercel.app/">Leandro Gonzalez Espinosa.</a> and named L0123.

## INSTALATION
``` bash
pip install encryptedcode
```
## IMPORTANT
 REMEMBER SAVE THE KEY INSIDE TO ENVIROMENT VARIABLE FOR YOUR SECURITY

### USAGE EXAMPLE
```python
#imports
from encryptedcode.encrypted_code import generate_key, encode, decode

key = generate_key()
cadena = "Hey! I'm a simple String"
encoded = encode(cadena, key)
print(f"Encoded: {encoded}")
decoded = decode(encoded, key)
print(f"Decoded: {decoded}")
```
