A package to encrypt data
Project description
Introduction
This code implements a simple encryption/decryption mechanism to secure messages using the cryptography library in Python.
Features
- PBKDF2 key derivation is used to derive a secret key from a given password and salt
- The message is encrypted using the Fernet module from the cryptography library
- The encryption process uses a random 16-byte salt, a user-specified number of iterations for the key derivation function, and the derived key to encrypt the message.
- The encrypted message is returned as a base64 encoded string
- The decryption process takes the encrypted message, password and decodes the encrypted message to retrieve the salt, iteration count and encrypted token
- The secret key is derived again using the password and salt, and the encrypted message is decrypted using Fernet
- The decrypted message is returned as a string
Requirements
- Python 3.x
- cryptography library
Usage
The code provides two main functions:
message_encrypt(message, password, iterations=100_000) and message_decrypt(token, password).
message_encrypt takes in the following arguments:
message: The message to be encrypted, as a string
password: The password used to derive the secret key, as a string
iterations: The number of iterations for the key derivation function. The default value is 100,000.
message_decrypt takes in the following arguments:
token: The encrypted message, as a string
password: The password used to derive the secret key and decrypt the message, as a string
The code returns the encrypted message or the decrypted message as a string.
Limitations
The encryption mechanism is only secure if the password is strong and kept confidential.
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 darkencryption-0.0.2.tar.gz.
File metadata
- Download URL: darkencryption-0.0.2.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
098a7c41d0ff2e7f3920c2503cd79ed3ad48f0d2fe7abd33eb2beb51fa4a751a
|
|
| MD5 |
c052b96fb1fc4eafb28ac579d008a569
|
|
| BLAKE2b-256 |
ffaef31f799af11e18a90243561ee18d1b89eedda273ab4b4473acceaacce37d
|
File details
Details for the file darkencryption-0.0.2-py3-none-any.whl.
File metadata
- Download URL: darkencryption-0.0.2-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4988034b2e9bcae74cd80675dac62eb365b24078223a88b9e357ab7079fb8739
|
|
| MD5 |
eeda960fcdde5a7c71bad3e4902d5702
|
|
| BLAKE2b-256 |
fbb11b1e3082a6bd6b2b025b9fccd1883a4546b5845bf267eff5501642f1b310
|