High level BLS12-381 functions for Aiken
Introduction
Welcome to the BLS12-381 library for the Aiken Cardano smart-contract language! This library is designed to simplify the use of BLS12-381 signatures in Aiken by extending the language built-ins with a comprehensive suite of data types, functions, constants, and aliases.
With this library, you can seamlessly implement advanced smart contracts on the Cardano blockchain utilizing the BLS12-381 signature scheme.
TODOS
Core Functions Implemented
- keygen: Generate private key.
- skToPk: Convert secret key to public key.
- sign: Sign messages with private key.
- verify: Verify signatures with the public key.
- aggregate_signatures: Combine multiple signatures.
- aggregate_publickeys: Combine multiple public keys.
- aggregate_verify: Verify aggregated signatures.
Aug Functions Implemented
- TBD
PoP functions Implemented
- TBD
Getting Started
To get started with this library, make sure you have the Aiken environment set up and follow the installation instructions provided in the documentation.
Usage
Detailed usage examples and API documentation can be found in the docs directory. Here is a quick example to get you started:
import ilap/bls.{ skToPk, sign, verify}
test test_bls () {
let sk = #"ed69a93f0cf8c9836be3b67c7eeff416612d45ba39a5c099d48fa668bf558c9c"
let pk = skToPk(sk)
let message = "Hello, Aiken!"
let signature = sign(sk, message)
verify(pk, message, signature)
}
BLS12-381 Technical Brief
-
Embedding degree: 12 i.e. the complexity of the pairing operation.
-
Field Size (π): A large prime number defining the finite field i.e. π½π. The prime in the finite field is 381-bit.
-
Prime Order (r): The number of points on the curve e.g.
π¦^2=π₯^3+4
forπ₯β{0,π½πβ1}
. The number of points on the elliptic curve (excluding the point at infinity) is a prime number. -
Security level: BLS12-381 provides an approximate 128-bit security level, given that its complexity is around
ββπ
i.e.πβ2^256
. -
Private key: A scalar in
π½π
which meansβ{0,πβ1}
. The size is 381 bits ~48 bytes. -
Identity Element: The multiplicative identity (1).
-
Bilinear pairing : A function
π:πΊ1ΓπΊ2βπΊπ
with the following properties:- Non-degeneracy:
π(π1,π2)β 1
for someπ1βπΊ1
andπ2βπΊ2
. - Bilinearity:
π(ππ1,ππ2)=π(π1,π2)ππ
for allπ,πβπ½π
andπ1βπΊ1
andπ2βπΊ2
. - Computability: There exists an efficient algorithm to compute
π(π1,π2)
for allπ1βπΊ1
andπ2βπΊ2
.
- Non-degeneracy:
-
Group Definitions:
- G1: This group consists of points on the elliptic curve over the base field
πΉπ
(π¦^2=π₯^3+4
). - G2:: This group consists of points on the twisted curve over an extension field
πΉπ^2
(π¦^2=π₯^3+4(1+i)
). - GT: This is the multiplicative group of a larger field
πΉπ12
, used as the result of the pairing operation.
- G1: This group consists of points on the elliptic curve over the base field
Resources
Contributing
We welcome contributions to enhance the functionality and usabilioty of this library. Please refer to the CONTRIBUTING.md file for guidelines on how to contribute.
License
This project is licensed under the Apache 2.0 License
- see the LICENSE file for details.