A Python package for AES-GCM encryption and decryption with a key.
Project description
KeyCipher
keycipher is a Python utility package for encrypting and decrypting text using AES-GCM with a secret key. It provides simple functions to handle secure encryption and decryption.
Installation
To install the package, use pip:
pip install keycipher
Usage
Here’s a brief guide on how to use the keycipher package.
Importing the Package
from keycipher import encrypt_data, decrypt_data
Encrypting Data
To encrypt a piece of text, use the encrypt_data function. You need to provide the plaintext and a key string.
from keycipher import encrypt_data
key_string = 'your-secret-key' # Replace with your key
plain_text = 'This is a secret message' # Replace with your text
encrypted_data = encrypt_data(plain_text, key_string)
print('Encrypted Data:', encrypted_data)
Decrypting Data
To decrypt data, use the decrypt_data function. You need to provide the encrypted data and the same key string used for encryption.
from keycipher import decrypt_data
encrypted_data = {
'iv': '...your IV...',
'cipherText': '...your cipherText...',
'tag': '...your tag...'
} # Replace with your generated encryption object
key_string = 'your-secret-key' # Replace with your key
decrypted_text = decrypt_data(encrypted_data, key_string)
print('Decrypted Text:', decrypted_text)
API
encrypt_data(plain_text, key_string)
Encrypts the given plaintext using the provided key string.
-
Arguments:
plain_text(str): The text to be encrypted.key_string(str): The key used for encryption.
-
Returns: A dictionary containing
iv,cipherText, andtag.
decrypt_data(encrypted_data, key_string)
Decrypts the given encrypted data using the provided key string.
-
Arguments:
encrypted_data(dict): The encrypted data object, which includesiv,cipherText, andtag.key_string(str): The key used for decryption.
-
Returns: The decrypted text.
Example
Here’s a complete example showing both encryption and decryption:
from keycipher import encrypt_data, decrypt_data
# Encryption
key_string = 'your-secret-key'
plain_text = 'This is a secret message'
encrypted_data = encrypt_data(plain_text, key_string)
print('Encrypted Data:', encrypted_data)
# Decryption
decrypted_text = decrypt_data(encrypted_data, key_string)
print('Decrypted Text:', decrypted_text)
About the Author
keycipher is created by Parth Dudhatra (imParth), a passionate software engineer, developer advocate, and content creator known for his contributions to the tech community. He is passionate about frontend development, Python programming, open-source software, and sharing knowledge with others.
Parth is active on various social media platforms, where he shares insights, tutorials, and tips related to programming, web development, and software engineering. Parth's dedication to sharing his expertise and fostering a supportive environment for developers has earned him recognition and respect within the tech community. Connect with Parth Dudhatra on social media:
If you have any questions, feedback, or suggestions, feel free to reach out to me on any platform!
License
This project is licensed under the ISC License.
Contributing
Contributions are welcome! Please open an issue or submit a pull request on the GitHub repository.
Issues
If you encounter any issues, please report them on the issues page.
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 keycipher-1.0.0.tar.gz.
File metadata
- Download URL: keycipher-1.0.0.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0afe4480cae982515c021a861486756dba489c44e14a8c6389b6c237fe19692
|
|
| MD5 |
ba35533e611bb20a8977a81488f27bd1
|
|
| BLAKE2b-256 |
ef1963ef9de1df928737e7b529a118231d72733c6ce506d2c41f116df3e1f947
|
File details
Details for the file keycipher-1.0.0-py3-none-any.whl.
File metadata
- Download URL: keycipher-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e24d6fd241dee88158c1fcfc4f958d9692318badf0ee38c7c75c3f64d6d04cf5
|
|
| MD5 |
eee0047077b9c539e68a15f6d733d2a7
|
|
| BLAKE2b-256 |
54406c238b54c640e1cb6f13222d10907aa4e78df100701e91f9339422871ade
|