Skip to main content

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 socket module 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'}

data = receiveEncryptedJSON(sock, keys_dict)
print(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

simes-0.1.1.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simes-0.1.1-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file simes-0.1.1.tar.gz.

File metadata

  • Download URL: simes-0.1.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for simes-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f478d1cb542f2a0b686610771949a6ec274b8643ba771ca65f1d3369593d4a79
MD5 9b8799d46a1a3aaee27a3adcccd79ff8
BLAKE2b-256 f6f4b75ef4f73469a0e86a3edb779a6cbfbe91d7a38131b55c290b5dd156371e

See more details on using hashes here.

File details

Details for the file simes-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: simes-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for simes-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 488d23515e7e487c73df685253863342b19401ea1a118f739127336d84ba9631
MD5 950319a09ada86ac46d2c9c348c16542
BLAKE2b-256 99dd068f3947d2d98035dcf2e477e2f10114a40173b9edb2ae40281dae097fe9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page