cryptomite
is a modular, extensible high-level Python library
of randomness extractors, created by Quantinuum's Quantum Cryptography team.
At a high level, the library offers state-of-the-art randomness extractors that are easy to use, optimized for performance and numerically precise
providing a trade-off of features that suit numerous practical use cases. Find more information in our accompanying paper.
For additional examples of usage and guidance on getting started with Cryptomite, see our related blog post
and repository documentation.
The library is available for non-commercial use only; see the license for details.
The performance-critical parts of the library (e.g. the number theoretic transform) are implemented in C++, while the rest of the library (e.g. parameter estimation) is implemented in Python for accessibility and ease of installation.
The package is available for Python 3.8 and higher on Mac, Windows and Linux. To install, type:
pip install cryptomite
from cryptomite.trevisan import Trevisan
from random import randint
n, m, max_eps = 1000, 200, 0.01
ext = Trevisan(n, m, max_eps)
input_bits = [randint(0, 1) for _ in range(n)]
seed_bits = [randint(0, 1) for _ in range(ext.ext.get_seed_length())]
output_bits = ext.extract(input_bits, seed_bits)
To build the docs, run
cd docs
pip install -r requirements.txt
make clean
make html
Install pytest
, then run pytest test
.
To run the C++ tests, run
cmake .
make
test/runTest
If you use cryptomite
in your research, please cite the accompanying paper:
@misc{foreman2024cryptomite,
title={Cryptomite: A versatile and user-friendly library of randomness extractors},
author={Cameron Foreman and Richie Yeung and Alec Edgington and Florian J. Curchod},
year={2024},
eprint={2402.09481},
archivePrefix={arXiv},
primaryClass={cs.CR}
}