A simple encryption library
Project description
EncryptMe Library
EncryptMe is a simple encryption library developed by ADJEI COLLINS, a Cybersecurity student from Accra Technical University, Ghana.
Features
- Encrypt and decrypt messages using a provided key.
- Save encrypted messages to files.
- Read encrypted messages from files.
- Display decrypted messages.
Installation
You can install the library using pip: pip install encryptme
pip install encryptme
Change Log
==========
1.5.0 (22/08/2023)
## USAGE GUIDE
# This guide demonstrates how to use the 'encryptme' library to encrypt and decrypt messages.
import encryptme
# Encryption key (known only to the sender)
encryption_key = 12345
# Message to encrypt
message = "Hello, this is a secret message!"
# Encrypt the message
encrypted_message = encryptme.encrypt(message, encryption_key)
# Save encrypted message to a file
encrypted_message.save("encrypted_message.txt")
# Decrypting the message
# (Importing the module again to ensure access to all functions)
import encryptme
# Encryption key (known only to the receiver)
decryption_key = 12345
# Read encrypted message from the file
encrypted_message = encryptme.read("encrypted_message.txt")
# Decrypt the message
decrypted_message = encryptme.decrypt(encrypted_message, decryption_key)
# Show decrypted message
decrypted_message.show()
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
encryptme-2.2.5.tar.gz
(3.5 kB
view details)
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 encryptme-2.2.5.tar.gz.
File metadata
- Download URL: encryptme-2.2.5.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
605608499b1aa46f2a2ecf0a9196a356be75f1cb3373849575aa5c29f890eb7a
|
|
| MD5 |
374f00ac423aa088752a6f20e77d442b
|
|
| BLAKE2b-256 |
01acc6279c38af4730f693167df95d1847d431e0793c90f416843e833f3e06d8
|
File details
Details for the file encryptme-2.2.5-py3-none-any.whl.
File metadata
- Download URL: encryptme-2.2.5-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c687451edef004cb4e914f234e0431efc3832a5c5e1cae237829cdb21956489
|
|
| MD5 |
e13f98e75c0343bfa8797502aba4261a
|
|
| BLAKE2b-256 |
aabfe88d562e5f43e676fc29f3c6d06b51d7e78edc5d1eb71c1a1e833b5063ae
|