This crate provides libraries and command line interfaces for producing threshold BLS signatures. The signatures can also be blind in order to preserve the privacy of the user asking for a signature from another set of parties.
Note: The DKG (Distributed Key Generation) crates have been removed from this repository as they were unstable and not necessary for the BLS crates to work. They were removed in commit a911f40f0fd31fabae197016b87640f2fdcf1c9f.
The project includes a Makefile that supports building for multiple platforms using Docker. All built libraries are placed in the output directory, organized by platform.
To clean the output directory before building:
make cleanmake allThis builds the libraries for all supported platforms.
To run tests:
make testThis runs the tests in a Docker container which is especially important for Apple Silicon (M1/M2/M3) Macs, as some dependencies have compatibility issues when running natively on ARM64 architecture. The Docker container provides an x86_64 / amd64 environment where all tests run successfully.
make wasmThis builds WebAssembly bindings that can be used with Node.js and places them in output/wasm.
make jvmThis builds JVM-compatible libraries and places them in output/jvm.
The mobile builds target:
- Android: API level 24 (Android 7.0) — set via
ANDROID_APIincrates/threshold-bls-ffi/cross/Makefile - iOS: 15.2 — set via
IPHONEOS_DEPLOYMENT_TARGETin the same Makefile
make iosThis builds a universal static library for iOS (combining aarch64 and x86_64 architectures) and places it in output/ios. Note that iOS builds must be run on a macOS host as they cannot be built in Docker.
make androidThis builds dynamic libraries for Android architectures (x86, x86_64, arm64-v8a, and armeabi-v7a) and places them in output/android.
The docker image used for building the libraries can be built separately if needed:
make build-docker-imageRust 1.95.0 is used by default and tested for all builds. If desired, you can build with a different Rust version by setting the RUST_VERSION env var:
make RUST_VERSION=1.95.0This repository contains Rust crates that implement threshold BLS signatures. The high-level structure of the repository is as follows:
threshold-bls: (blind) threshold BLS signatures for BLS12-377threshold-bls-ffi: FFI and WASM bindings tothreshold-blsfor cross platform interoperability
This software has not been audited. Use at your own risk.