Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skalenetwork/libBLS
Solidity-compatible BLS signatures, threshold encryption, distributed key generation library in modern C++. Actively maintained and used by SKALE for consensus, distributed random number gen, inter-chain communication and protection of transactions. BLS threshold signatures can be verified in Solidity, and used as random beacon (common coin)
https://github.com/skalenetwork/libBLS
bls bls-signature bls-signatures bls-threshold-signatures common-coin cryptography distributed-key-generation dkg elliptic-curves joint-feldman skale skale-network solidity threshold-cryptography threshold-encryption threshold-signatures
Last synced: 6 days ago
JSON representation
Solidity-compatible BLS signatures, threshold encryption, distributed key generation library in modern C++. Actively maintained and used by SKALE for consensus, distributed random number gen, inter-chain communication and protection of transactions. BLS threshold signatures can be verified in Solidity, and used as random beacon (common coin)
- Host: GitHub
- URL: https://github.com/skalenetwork/libBLS
- Owner: skalenetwork
- License: agpl-3.0
- Created: 2019-02-28T14:02:07.000Z (over 5 years ago)
- Default Branch: develop
- Last Pushed: 2024-03-01T19:17:08.000Z (9 months ago)
- Last Synced: 2024-08-31T23:48:32.420Z (3 months ago)
- Topics: bls, bls-signature, bls-signatures, bls-threshold-signatures, common-coin, cryptography, distributed-key-generation, dkg, elliptic-curves, joint-feldman, skale, skale-network, solidity, threshold-cryptography, threshold-encryption, threshold-signatures
- Language: C++
- Homepage: https://skale.space
- Size: 30.9 MB
- Stars: 142
- Watchers: 11
- Forks: 46
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-tss - libBLS (SKALE Network)
README
# libBLS: a C++ library for BLS Threshold Signatures
[![Build and test libBLS](https://github.com/skalenetwork/libBLS/actions/workflows/test.yml/badge.svg)](https://github.com/skalenetwork/libBLS/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/skalenetwork/libBLS/branch/develop/graph/badge.svg)](https://codecov.io/gh/skalenetwork/libBLS)
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/3745/badge)](https://bestpractices.coreinfrastructure.org/projects/3745)
[![Discord](https://img.shields.io/discord/534485763354787851.svg)](https://discord.gg/vvUtWJB)A mathematical library written in C++ that supports BLS threshold signatures, Distributed Key Generation (DKG) and Threshold Encryption (TE).
This libBLS library is developed by SKALE Labs and uses SCIPR-LAB's libff (see Libraries below).
## An important note about production readiness
This libBLS library is still in active development and therefore should be regarded as _alpha software_. The development is still subject to security hardening, further testing, and breaking changes. **This library has not yet been reviewed or audited for security.** Please see [SECURITY.md](SECURITY.md) for reporting policies.
## Overview
libBLS is a C++ library for [BLS signatures](https://doi.org/10.1007%2F3-540-45682-1_30) and [DKG](https://doi.org/10.1007%2F3-540-48910-X_21) that supports both threshold signatures and multi-signatures. Also it supports [Threshold Encryption](https://doi.org/10.1109/GLOCOM.2003.1258486).
The signature process proceeds in 4 steps:
1. Key generation
2. Hashing
3. Signing
4. VerificationlibBLS uses the alt_bn128 (Barreto-Naehrig curve) elliptic curve to be compatible with [Ethereum's cryptography](https://ethereum.github.io/yellowpaper/paper.pdf) and provides 128 bits of security. Also, it provides opportunity to generate secret keys with DKG algorithm that supports the same curve.
libBLS for the most part corresponds to [BLS signature standard](https://tools.ietf.org/html/draft-boneh-bls-signature-00). This work is still in progress and is going to be improved in the next couple of months.
Encryption process is running as follows:
1. Key generation
2. Encryption
3. Decryption
4. Verifying and combining shareslibBls uses the same alt_bn128 curve for threshold encryption as for BLS signatures.
## Performance Specifications
libBLS allows to sign about 3000 messages per second on a single thread (Intel® Core™ i3-4160 CPU @ 3.60GHz). However, for our solution we have implemented constant time signing (0.01 sec for sign) to avoid timing attacks.
## Installation Requirements
libBLS has been built and tested on Ubuntu and Mac.
GitHub is used to maintain this source code. Clone this repository by:
```shell
git clone https://github.com/skalenetwork/libBLS.git
cd libBLS
```## Building Dependencies
Ensure that required packages listed below are installed.
Build libBLS's dependencies by:
```shell
cd deps
bash ./build.sh
cd ..
```## Building from source on Mac
```shell
brew install flex bison libtool automake cmake pkg-config yasm
# Configure the project and create a build directory.
cmake -H. -Bbuild# Build all default targets using all cores.
cmake --build build -- -j$(sysctl -n hw.ncpu)
```## Building from source on Ubuntu
Ensure that the required packages are installed by executing:
```shell
sudo apt-get update
sudo apt-get install -y automake cmake build-essential libprocps-dev libtool\
pkg-config yasm texinfo autoconf flex bison clang-format-6.0
```Configure the project build with the following commands.
```shell
# Configure the project and create a build directory.
cmake -H. -Bbuild# Build all default targets using all cores.
cmake --build build -- -j$(nproc)
```### Include the library
```cpp
#include
```### Documentation
See [docs](docs) for libBLS documentation.
## Libraries
- [libff by SCIPR-LAB](http://www.scipr-lab.org/)
## Contributing
**If you have any questions please ask the development community on [Discord](https://discord.gg/vvUtWJB).**
[![Discord](https://img.shields.io/discord/534485763354787851.svg)](https://discord.gg/vvUtWJB)
Otherwise see our [CONTRIBUTING.md](.github/CONTRIBUTING.md) for more information.
## License
[![License](https://img.shields.io/github/license/skalenetwork/libbls.svg)](LICENSE)
Copyright (C) 2018-present SKALE Labs