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.2.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.2-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: simes-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 c184f9a43704e9922026201fe39ed3d2e0a07ff794450f24f1ccf10b39856a7f
MD5 5021aeacce63137288efbd944193ebca
BLAKE2b-256 f51959b98ef1e61050f0837c0ee332470fb3aef9a09daddf72edb13d0d155318

See more details on using hashes here.

File details

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

File metadata

  • Download URL: simes-0.1.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f4dc64e714e76cb9f188d6248241cb2259852eb1e4af45bb77e478e149436d13
MD5 1d13a84d2a53f3f0f042c5f5ef1e377e
BLAKE2b-256 679d679dfaddf93ca2bb9eee2a996395013e8449503babe60cbb05bc0e930ac0

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