simes, simple encrypted socket
Project description
simes: Simple Encrypted Socket Library
Overview
simes is a Python library designed to facilitate secure and easy-to-use encrypted communication over sockets. It provides a suite of tools for encrypting and decrypting messages sent over TCP/IP, ensuring that your data remains private and secure during transmission.
Features
- AES Encryption: Utilizes Advanced Encryption Standard (AES) in CBC mode for strong encryption.
- Automatic Padding: Handles padding of messages to fit block size requirements.
- IV Management: Securely generates and manages Initialization Vectors (IVs) for each encryption operation.
- Key Management: Offers a simple interface for managing encryption keys.
- Error Handling: Robust error handling for common issues like message size limits and unknown senders.
- Socket Communication: Seamlessly integrates with Python's
socketmodule for network communications.
Installation
To install simes, you can simply use pip:
pip install simes
Usage
Here's a quick example to get you started with simes:
Encrypting and Sending a Message
import socket
from simes import sendEncryptedJSON
# Setup socket and key
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
key = b'secret_key_16_byte'
# Encrypt and send a message
data = {"message": "Hello, World!"}
sendEncryptedJSON(sock, 'sender_name', data, key)
Receiving and Decrypting a Message
from simes import receiveEncryptedJSON
# Assuming 'sock' is a socket object
keys_dict = {'sender_name': b'secret_key_16_byte'}
sender, data = receiveEncryptedJSON(sock, keys_dict)
print("Received message from", sender, ":" data)
Check the test directory for more examples.
Contributing
Contributions to simes are welcome!
License
simes is released under the MIT License.
Project details
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 simes-0.1.4.tar.gz.
File metadata
- Download URL: simes-0.1.4.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f0288e1fbf9c1fe0c9656a0168fae5303776dec7fea3357430935b4fbb816b9
|
|
| MD5 |
c7618f10d54a70adaff00fcb6660da0f
|
|
| BLAKE2b-256 |
ad3ac66b82d0e850c721b9f9f412e23896e54b7e8e6ad6319f694e87c3905595
|
File details
Details for the file simes-0.1.4-py3-none-any.whl.
File metadata
- Download URL: simes-0.1.4-py3-none-any.whl
- Upload date:
- Size: 5.3 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 |
36cef172fbc5ca3153f5a513a5c3d8e098bd0861c5c21f2a37f2ccb3942b1809
|
|
| MD5 |
afa9340f07280694c020eea3dba0873c
|
|
| BLAKE2b-256 |
089d79cf52768930150b35432673c3449273a3df34be9d52f4959cbc42baf101
|