CoverCrypt

Build status Build status latest version

Implementation of the CoverCrypt algorithm which allows creating ciphertexts for a set of attributes and issuing user keys with access policies over these attributes.

Getting started

See examples/runme.rs for a code sample that introduces the main CoverCrypt functionalities. It can be run using cargo run --example runme.

Building and testing

To build the core only, run:

bash cargo build --release

To build the FFI interface:

bash cargo build --release --features ffi

To build the WASM interface:

bash cargo build --release --features wasm_bindgen

To build the Python interface, run:

bash maturin build --release --features python

Note: when a new function or class is added to the PyO3 interface, its signature needs to be added to __init__.pyi.

To run tests on the Python interface, run:

bash ./python/scripts/test.sh

To build everything (including the FFI):

bash cargo build --release --all-features

The latter will build a shared library. On Linux, one can verify that the FFI symbols are present using:

bash objdump -T target/release/libcosmian_cover_crypt.so

The code contains numerous tests that you can run using:

bash cargo test --release --all-features

Benchmarks can be run using (one can pass any feature flag):

bash cargo bench

Building the library for a different glibc

Go to the build directory for an example on how to build for GLIBC 2.17

Building the library for cloudproof_java or cloudproof_flutter

From the root directory:

bash cargo build --release --features ffi

Build the library for cloudproof_js

From the root directory:

bash cargo build --release --features wasm_bindgen

Build the library for cloudproof_python

From the root directory:

bash maturin build --release --features python

Features and Benchmarks

In CoverCrypt, messages are encrypted using a symmetric scheme. The right management is performed by a novel asymmetric scheme which is used to encapsulate a symmetric key. This encapsulation is stored in an object called encrypted header, along with the symmetric ciphertext.

This design brings several advantages:

The benchmarks presented in this section are run on a Intel(R) Core(TM) i7-10750H CPU @ 3.20GHz.

Key generation

Asymmetric keys must be generated beforehand. This is the role of a central authority, which is in charge of:

The CoverCrypt APIs exposes everything that is needed:

The key generations may be long if the policy contains many rights or if there are many users. But this is usually run once at setup. Key updates and refresh stay fast if the change in the policy is small.

Serialization

The size of the serialized keys and encapsulation is given by the following formulas:

c 3 * PRIVATE_KEY_LENGTH + LEB128_sizeof(partitions.len()) \ + sum(LEB128_sizeof(sizeof(partition)) + sizeof(partition) + PRIVATE_KEY_LENGTH + 1 [+ INDCPA_KYBER_PRIVATE_KEY_LENGTH])

c 2 * PUBLIC_KEY_LENGTH + LEB128_sizeof(partitions.len()) \ + sum(LEB128_sizeof(sizeof(partition)) + sizeof(partition) + PUBLIC_KEY_LENGTH + 1 [+ INDCPA_KYBER_PUBLIC_KEY_LENGTH])

c 2 * PRIVATE_KEY_LENGTH + LEB128_sizeof(partitions.len()) \ + partition.len() * (PRIVATE_KEY_LENGTH + 1 [+ INDCPA_KYBER_PRIVATE_KEY_LENGTH])

c 2 * PUBLIC_KEY_LENGTH + TAG_LENGTH + LEB128_sizeof(partitions.len()) + partition.len() * [INDCPA_KYBER_CIPHERTEXT_LENGTH | PUBLIC_KEY_LENGTH]

c sizeof(encapsulation) + DEM_ENCRYPTION_OVERHEAD + sizeof(plaintext)

NOTE: For our implementation CoverCryptX25519Aes256:

Secret key encapsulation

This is the core of the CoverCrypt scheme. It allows creating a symmetric key and its encapsulation for a given set of rights.

To ease the management of the encapsulations, an object EncryptedHeaderis provided in the API. An encrypted header holds an encapsulation and a symmetric ciphertext of an optional additional data. This additional data can be useful to store metadata.

| Nb. of partitions | Encapsulation time | |-------------------|--------------------| | 1 | 260 | | 2 | 390 | | 3 | 518 | | 4 | 663 | | 5 | 791 |

Note: encapsulations grow bigger with the size of the target set of rights and so does the encapsulation time. The following benchmark gives the size of the encrypted header and the encryption time given the number of rights in the target set (one right = one partition).

Secret key decapsulation

A user can retrieve the symmetric key needed to decrypt a CoverCrypt ciphertext by decrypting the associated EncryptedHeader. This is only possible if the user secret keys contains the appropriate rights.

The following table gives the decryption time given the size (in number of partitions) of the user secret key (vertically) and the encapsulation (horizontally).

| Nb. of partitions (usk vs encapsulation, 1 match) | 1 | 2 | 3 | 4 | 5 | |-------------------------------------------------------|-----|-----|-----|-----|-----| | 1 | 215 | 276 | 330 | 344 | 399 | | 2 | 314 | 385 | 476 | 534 | 634 | | 3 | 388 | 528 | 666 | 815 | 847 |

Documentation

A formal description and proof of the CoverCrypt scheme is given in this paper. It also contains an interesting discussion about the implementation.

The developer documentation can be found on doc.rs

Releases

All releases can be found in the public URL package.cosmian.com.