Your easy tool to encrypt and decrypt strings with a password
Project description
pyeasyencrypt
Description
The purpose of this module is to simplify the way of encrypting and decrypting strings at python with a simple password
Example of Python code
import logging, os
# pip install pyeasyencrypt
from pyeasyencrypt.pyeasyencrypt import encrypt_string, decrypt_string
level = os.getenv("LOGGER", "INFO")
logging.basicConfig(level=level)
logger = logging.getLogger(__name__)
def main():
logger.info("Example")
clear_string = 'stringA'
password = "my password"
encrypted_string = encrypt_string(clear_string, password)
decrypted_string = decrypt_string(encrypted_string, password)
logger.info(f"clear_string={clear_string} decrypted_string={decrypt_string} password={password} encrypted_string={encrypted_string}")
logger.debug("Done")
if __name__ == '__main__':
main()
Author
Name: Jordi Redondo Email: jordipromotions@gmail.com git repo: https://github.com/redcorjo/pyeasyencrypt.git
Install
pip install pyeasyencrypt
Version: 2023010803
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyeasyencrypt-0.1.0.tar.gz.
File metadata
- Download URL: pyeasyencrypt-0.1.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd8adc754e90c32731184dc5ef1adc3858d6689c6836543f18847202e65f4cbf
|
|
| MD5 |
9d06ab1f37cbbd5271b71f5c2698e5ee
|
|
| BLAKE2b-256 |
6f29adf1c114bab49a7357479ed1ac9d436ddf94ba84625321569870b460768c
|
File details
Details for the file pyeasyencrypt-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pyeasyencrypt-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
250301db867154ab96341a01a4992868b23b96f2ad2fe3caed699fe2717f42a7
|
|
| MD5 |
59728825c389751aa3079a3b23336e11
|
|
| BLAKE2b-256 |
781e0baf8d3e3dd3bc714596688f91dbd526d00965851d1314d28199588eee84
|