Skip to main content

A Block Metadata-Driven Order-Preserving Encryption (BMDOPE)

Project description

pybmdope

BMDOPE (Block Metadata-Driven Order-Preserving Encryption) is a custom encryption library designed to process data securely while preserving the order of encrypted blocks.

Overview

BMDOPE is designed for scenarios where maintaining the order of encrypted data is critical, such as database indexing or range queries on encrypted data. It achieves this by encrypting data in blocks and using metadata to preserve the order of the blocks during encryption and decryption.

Disclaimer: The order-preserving properties of BMDOPE are currently available for numeric sorting only. Lexicographical ordering is supported only for data with fixed size.

Algorithm

  1. Block-Based Encryption: Data is divided into fixed-size blocks, and each block is encrypted individually using a key.
  2. Metadata Handling: Metadata is generated during encryption to store information about the length of each encrypted block. This metadata is encrypted separately to ensure security.
  3. Order Preservation: The encryption algorithm ensures that the lexicographical order of the plaintext blocks is preserved in the encrypted blocks.
  4. Key Management: The encryption key is reshuffled after processing each block to enhance security.

Use Cases

  • Encrypted Databases: Perform range queries or sorting operations on encrypted data without decrypting it.
  • Secure Indexing: Maintain the order of encrypted data for efficient indexing and retrieval.
  • Data Transmission: Securely transmit ordered data while preserving its structure.
  • Equality Checks: Use encrypt_bound to generate upper and lower bounds for equality checks. Since BMDOPE uses non-deterministic encryption (randomized IVs), the same plaintext does not produce the same ciphertext. By encrypting the bounds, you can perform range queries to match the encrypted data.

Installation

From PyPI

Install the package directly from PyPI:

pip install pybmdope

From Source

To install the package from the source, use:

pip install -e .

This will install the package in editable mode, allowing you to make changes to the source code and use them immediately.

Usage

Example

from pybmdope.bmdope import BMDOPE

# Initialize BMDOPE with generated key and IV
key = BMDOPE.generate_key()
bmdope = BMDOPE(key, iv)

# Data to encrypt
data = b"example data for encryption"

# Encrypt the data
encrypted_data = bmdope.encrypt(data)
print(f"Encrypted Data: {encrypted_data}")

# Decrypt the data
decrypted_data = bmdope.decrypt(encrypted_data)
print(f"Decrypted Data: {decrypted_data.decode('utf-8')}")

Testing

Unit tests are provided for all modules and integration. Run the tests using:

python -m unittest discover -s tests

TODO

  • Replace binary string representation (e.g., b'1010101') with bitarray for improved performance and flexibility.

License

This project is licensed 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

pybmdope-1.1.3.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

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

pybmdope-1.1.3-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file pybmdope-1.1.3.tar.gz.

File metadata

  • Download URL: pybmdope-1.1.3.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pybmdope-1.1.3.tar.gz
Algorithm Hash digest
SHA256 2028caa4c521e5138d7f77ca21978fd5e00356b2bfbcd41b827ef6c28d969762
MD5 9a227231298fcc81e42df3a432cdb8e5
BLAKE2b-256 ab8b3b4ad377548e4aa3bbe5cb877ad0757455dc2d8348566eaf0951d635022c

See more details on using hashes here.

File details

Details for the file pybmdope-1.1.3-py3-none-any.whl.

File metadata

  • Download URL: pybmdope-1.1.3-py3-none-any.whl
  • Upload date:
  • Size: 10.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pybmdope-1.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 25838f841ffbd3c5b4a0068e5bce993a043e9677283b2fccce1cfa3691b31093
MD5 a97186e49360455d6d0446525ad03c9c
BLAKE2b-256 caf3cbbaa3701037942ba59ea331bd19230dee4730ea3f123e25818139d735dc

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