A package to encrypt any sort of string or data. currently HEAVILY w.i.p.
Project description
Encryption Package
This Python package provides basic functionality for encrypting and decrypting strings.
Functions
encrypt_str
The encrypt_str
function is used to encrypt a string using a specified key.
encrypt_str(Input: str, Key: str = "", Method: int = 0) -> str
Input
: The string to be encrypted.Key
: The encryption key (optional).Method
: The encryption method (0 for custom encryption).
decrypt_str
The decrypt_str
function is used to decrypt an encrypted string using a specified key.
decrypt_str(Input: str, Key: str, Method: int = 0) -> str
Input
: The string to be decrypted.Key
: The decryption key.Method
: The decryption method (0 for custom decryption).
Usage
To use this package, you can call the encrypt_str
function to encrypt a string and the decrypt_str
function to decrypt it. Ensure that you provide the correct encryption and decryption keys for successful operations.
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
obfuscy-0.0.1.tar.gz
(3.7 MB
view hashes)