forked from rynobey/ECC-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson_types.go
84 lines (69 loc) · 1.75 KB
/
json_types.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
73
74
75
76
77
78
79
80
81
82
83
84
package main
import (
"github.com/rynobey/bn256"
"math/big"
"fmt"
)
type Response struct {
Text string `json:"text,omitempty"`
Num *Number `json:"number,omitempty"`
P *CurvePoint `json:"curvepoint,omitempty"`
Sig *SchnorrSignature `json:"sig,omitempty"`
Err *Error `json:"error,omitempty"`
}
type Text struct {
T string `json:"t"`
}
type BinaryEcOpParams struct {
A *CurvePoint `json:"a"`
B *CurvePoint `json:"b"`
}
type ScalarEcOpParams struct {
S *Number `json:"s"`
A *CurvePoint `json:"a"`
}
type CurvePoint struct {
X string `json:"x"`
Y string `json:"y"`
}
func NewCurvePoint(P *bn256.G1) (*CurvePoint) {
marshalledPoint := P.Marshal()
x := fmt.Sprintf("0x%064x", marshalledPoint[0:32])
y := fmt.Sprintf("0x%064x", marshalledPoint[32:64])
return &CurvePoint{X: x, Y: y}
}
type BinaryOpParams struct {
A string `json:"a"`
B string `json:"b"`
}
type TernaryOpParams struct {
A string `json:"a"`
B string `json:"b"`
C string `json:"c"`
}
type CommitmentInputs struct {
B string `json:"b"`
V string `json:"v"`
H *CurvePoint `json:"h"`
G *CurvePoint `json:"g"`
}
type GenerateSchnorrInputs struct {
Priv string `json:"priv"`
M string `json:"m"`
}
type SchnorrSignature struct {
P *CurvePoint `json:"p"`
K *CurvePoint `json:"kg,omitempty"`
M string `json:"m"`
E string `json:"e"`
S string `json:"s"`
}
type Number struct {
V string `json:"v"`
}
func NewNumber(num *big.Int) (*Number) {
return &Number{V: fmt.Sprintf("0x%x", num)}
}
type Error struct {
Msg string `json:"msg"`
}