This repository has been archived by the owner on Feb 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
blind_requester.go
72 lines (61 loc) · 1.72 KB
/
blind_requester.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package btcutil
import "crypto/ecdsa"
import "crypto/rand"
import "math/big"
type BlindRequesterState struct {
// secret stuff
a, b, bInv, c *big.Int
// shareable stuff
F *ecdsa.PublicKey
X0 *big.Int //
Mhat *big.Int // called m̂ in the paper
}
// Calculates a blinded version of message m
func BlindMessage(rState *BlindRequesterState, Q, R *ecdsa.PublicKey, m *big.Int) *big.Int {
crv := Secp256k1().Params()
// generate F which is not equal to O (§4.2)
var err error
F := new(ecdsa.PublicKey)
for F.X == nil && F.Y == nil {
// requester's three blinding factors (§4.2)
rState.a, err = RandFieldElement(rand.Reader)
maybePanic(err)
rState.b, err = RandFieldElement(rand.Reader)
maybePanic(err)
rState.c, err = RandFieldElement(rand.Reader)
maybePanic(err)
rState.bInv = new(big.Int).ModInverse(rState.b, crv.N)
// requester calculates point F (§4.2)
abInv := new(big.Int).Mul(rState.a, rState.bInv)
abInv.Mod(abInv, crv.N)
bInvR := ScalarMult(rState.bInv, R)
abInvQ := ScalarMult(abInv, Q)
cG := ScalarBaseMult(rState.c)
F = Add(bInvR, abInvQ)
F = Add(F, cG)
}
rState.F = F
// calculate r and m̂
r := new(big.Int).Mod(F.X, crv.N)
mHat := new(big.Int).Mul(rState.b, r)
mHat.Mul(mHat, m)
mHat.Add(mHat, rState.a)
mHat.Mod(mHat, crv.N)
rState.Mhat = mHat
return rState.Mhat
}
// Extract true signature from the blind signature
func BlindExtract(rState *BlindRequesterState, sHat *big.Int) *BlindSignature {
crv := Secp256k1().Params()
// requester extracts the real signature (§4.4)
s := new(big.Int).Mul(rState.bInv, sHat)
s.Add(s, rState.c)
s.Mod(s, crv.N)
sig := &BlindSignature{S: s, F: rState.F}
return sig
}
func maybePanic(err error) {
if err != nil {
panic(err)
}
}