Technical Background
In B2 Sidechain, all transactions are being signed by the ECDSA signature algorithm which is described in following subsection. The raw transaction is first digested by the hash function (Keccak), and then the hash value is signed by the sender’s private key through ECDSA. The current version of Parlia consensus does not provide fast finality because one validator produces a block, and to make sure of the correctness of these operations, one has to wait for the long confirmation time, usually it is 2/3∗N+1 where N enotes the active validators. Aggregated signature mechanism with Parlia’s fast-finality can solve this problem because one can collect and convert many signatures into one aggregated signature and send only this aggregated signature to the chain. For the aggregated signature, some special elliptic curves such as BLS12381 or BN256 will be used.
Cryptographic Hash functions
A cryptographic hash function H:{0,1}∗→{0,1}k takes an arbitrary-length message and outputs a fixed-length output. A hash function has the following basic properties:
· Deterministic: Given m, we always have x=H(m)(the same input m always results in the same output x).
· Efficient: it is very fast to compute the hash value for any given message.
· Pre-image resistance (one-wayness): For essentially all pre-specified outputs, it is computationally infeasible to find any input which hashed to that output.
· Second pre-image resistance It is computationally infeasible to find a second message that produces the same hash value.
· Collision resistant: It is also hard to find two arbitrary inputs x and y that hash to the same value, i.e., H(x)=H(y).
Digital Signatures: ECDSA Signing Algorithm
Let’s assume that n is order point, P and Q are two points on an elliptic curve, and G is a base point. The ECDSA signature algorithm can be described as follows:
Key generation:
1. Select a random number d in the interval [1,n−1].
2. Compute Q=dG
3. Public key is Q, private key is d.
Signature generation:
1. Select a random integer k, 1≤k≤n.
2. Compute kG=(x1,y1) and convert x1 to an integer x1.
3. Compute r=x1 mod n. If r=0 then go to step 1.
4. Compute k−1 mod n.
5. Compute Hash(m) and convert this bit string to an integer e.
6. Compute s=k−1(e+dr) mod n. If s=0 then go to step 1.
7. Signature for the message m is (r,s).
Signature verification:
1. Verify that r and s are integers in the interval [1,n−1].
2. Compute Hash(m) and convert this bit string to an integer e.
3. Compute w=s−1 mod n.
4. Compute u1=ew mod n and u2=rw mod n.
5. Compute X=u1G+u2Q.
6. If X=θ then reject the signature. Otherwise, convert the x-coordinate x1 of X to an integer x1, and compute v=x1 mod n.
Aggregated Signatures
BLS 12381
BLS (Boneh, Lynn, Shacham) is another digital signature introduced in 2001 and has an aggregated structure. Let e:G1×G2→G3 be a pairing where G1, G2 are additive groups and G3 is a multiplicative group. Also, let G1,G2 and G3 are base elements of G1, G2 and G3 respectively.
Public and Private Key Pair (pk,sk):
· The private key sk to be used for signing is just a randomly chosen number between [1,r−1].
· The corresponding public key is pk=[sk]G1.
Signing:
· To sign a message m we first need to map m onto a point in group G2. Let’s assume this mapping results in a G2 point H(m).
· We sign the message by calculating the signature σ=skH(m).
Verification:
Given a message m, a signature σ, and a public key pk, we want to verify that it was signed with the sk.
· The signature is valid if, and only if, e(G1,σ)=e(pk,H(m)).
Aggregation
One of the most important properties of BLS signatures is that they can be aggregated
· To aggregate signatures, we just must add up the G2 points they correspond to: σaggregated=σ1+σ2+...+σn.
· We also aggregate the corresponding G1 public key point
pkaggregated=pk1+pk2+...+pkn.
· Verify that e(G1,σaggregated)=e(pkaggregated,H(m)) to verify all the signatures together with just two pairings.
BN256 Curves
BN256 is basically the size of the prime number of the underlying field in G1, G2 and G3. In a BN256 curve, G2 is basicallyE(GF(p)), G2 is a subgroup of E(GF(p12)) and G3 is a subgroup of GF(p12). Elements of G1 requires the same number of bits as p for each elliptic curve point. We would like to highlight that not all prime-friendly curves support cofactor 1. This means that we may need a larger prime for a particular group order in some cases. Elements of G2 require the same as pk for each elliptic curve point coordinate, where k is the embedding degree of the curve. When using twisted curves, we can reduce this by 2, 3, 4, or 6 depending on the curve. BN curves have embedding degree 12 and support twists, therefore we can use elements with the same size as p612=p2.
Last updated
Was this helpful?