#bls-signatures #indy #hyperledger #group #pairing #verify #random

indy-blssignatures

Hyperledger Indy BLS Signatures

1 unstable release

0.1.0 Aug 9, 2023

#6 in #indy

Download history 254/week @ 2023-12-14 78/week @ 2023-12-21 129/week @ 2023-12-28 531/week @ 2024-01-04 514/week @ 2024-01-11 319/week @ 2024-01-18 360/week @ 2024-01-25 690/week @ 2024-02-01 834/week @ 2024-02-08 389/week @ 2024-02-15 473/week @ 2024-02-22 300/week @ 2024-02-29 330/week @ 2024-03-07 633/week @ 2024-03-14 545/week @ 2024-03-21 191/week @ 2024-03-28

1,742 downloads per month
Used in indy-vdr

Apache-2.0

66KB
1.5K SLoC

BLS Signatures Rust

A BLS digital signature—also known as Boneh–Lynn–Shacham (BLS)—is a cryptographic signature scheme which allows a user to verify that a signer is authentic.

The scheme uses a bilinear pairing for verification, and signatures are elements of an elliptic curve group. Working in an elliptic curve group provides some defense against index calculus attacks (with the caveat that such attacks are still possible in the target group $G_{T}$ of the pairing), allowing shorter signatures than Full Domain Hash signatures for a similar level of security.

Signatures produced by the BLS signature scheme are often referred to as short signatures, BLS short signatures, or simply BLS signatures. The signature scheme is provably secure (the scheme is existentially unforgeable under adaptive chosen-message attacks) in the random oracle model assuming the intractability of the computational Diffie–Hellman problem in a gap Diffie–Hellman group.

Rust Crate

This crate implements a version of the BLS signature scheme. The implementation doesn't match up with the BLS signatures specification at the IETF. This implementation uses the BN254 curve defined here: https://neuromancer.sk/std/bn/bn254 (sometimes called BN254N), and should not to be confused with the one used in Ethereum.

To start, all that is needed is to add this to your Cargo.toml.

[dependencies]
indy-blssignatures = "0.1"

This implementation of BLS Signatures was initially in the Hyperledger Ursa project and is used in the Hyperledger Indy Node and Hyperledger Indy Plenum repositories/artifacts.

A Python wrapper for this crate can be found in the indy-bls-wrapper-python repository.

Dependencies

~3.5MB
~64K SLoC