Metadata-Version: 2.1
Name: encryptedcode
Version: 1.1.10
Summary: This library can be used to encrypt and decrypt passwords using the new L0123 algorithm.
Home-page: https://github.com/leoGlez01/encypted-code
Author: Ing. Leandro Gonzalez Espinosa
Author-email: lworkgonzalez01@gmail.com
License: MIT
Keywords: encode,decode,algorithm,cryptography,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.6
Description-Content-Type: text/markdown
Requires-Dist: cryptography >=3.4.7

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

### About
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 import generate_key, encode, decode

# Generate a key
key = generate_key()

# Encode a string
encoded_string = encode("your_password", key)
print(f"Encoded: {encoded_string}")

# Decode the string
decoded_string = decode(encoded_string, key)
print(f"Decoded: {decoded_string}")
```
