Skip to main content

Mix&Slice

Project description

Description

This directory contains the python wrapper based on cffi and the command line tool to use Mix&Slice on your files.

The C implementation has been built with performance in mind, whereas the python wrapper and the CLI tool has been implemented to offer a more widespread access of the Mix&Slice capabilities. The mixing and slicing phases use the C implementation, but the python conversion adds a big overhead since it has to materialize all the buffers in memory.

Since the tool materializes all the buffers in memory and has to perform both the mixing and the slicing phases, you should only use the CLI tool on files that are at maximum as large as a third of your available memory.

Please check the file example.py to understand how to use the library.

Requirements

Before proceeding please install the openssl/crypto library source. In ubuntu you can proceed as follows:

sudo apt install libssl-dev

Then you can install the package in your system with:

make build
sudo make install

To install the package in a virtual environment, use:

python setup.py install

The python wrapper will also compile the libaesmix library.

Command Line Interface

This package also installs the mixslice tool that can be used as follows.

To encrypt a file:

$ mixslice encrypt sample.txt
INFO: [*] Encrypting file sample.txt ...
INFO: Output fragdir:   sample.txt.enc
INFO: Public key file:  sample.txt.public
INFO: Private key file: sample.txt.private

To perform a policy update:

$ mixslice update sample.txt.enc
INFO: [*] Performing policy update on sample.txt.enc ...
INFO: Encrypting fragment #68
INFO: Done

To decrypt a file:

$ mixslice decrypt sample.txt.enc
INFO: [*] Decrypting fragdir sample.txt.enc using key sample.txt.public ...
INFO: Decrypting fragment #68
INFO: Decrypted file: sample.txt.enc.dec

$ sha1sum sample.txt sample.txt.enc.dec
d3e92d3c3bf278e533f75818ee94d472347fa32a  sample.txt
d3e92d3c3bf278e533f75818ee94d472347fa32a  sample.txt.enc.dec

Key regression mechanism

The key regression mechanism implementation is based on “Key Regression: Enabling Efficient Key Distribution for Secure Distributed Storage”.

Example

The key regression library can be used as follows.

from aesmix.keyreg import KeyRegRSA


iters = 5
stp = KeyRegRSA()

print("== WINDING ==")
for i in range(iters):
    stp, stm = stp.wind()
    print("k%i: %r" % (i, stm.keyder()))

print("\n== UNWINDING ==")
for i in range(iters - 1, -1, -1):
    print("k%i: %r" % (i, stm.keyder()))
    stm = stm.unwind()

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

aesmix-1.2.tar.gz (14.2 kB view hashes)

Uploaded Source

Supported by

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