-
Notifications
You must be signed in to change notification settings - Fork 3
/
marshaler.go
106 lines (86 loc) · 1.88 KB
/
marshaler.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package math
import "encoding/json"
type curveElement struct {
CurveID CurveID `json:"curve" validate:"required"`
ElementBytes []byte `json:"element" validate:"required"`
}
func (z *Zr) UnmarshalJSON(raw []byte) error {
ce := &curveElement{}
err := json.Unmarshal(raw, ce)
if err != nil {
return err
}
z.curveID = ce.CurveID
z.zr = Curves[z.curveID].NewZrFromBytes(ce.ElementBytes).zr
return nil
}
func (z *Zr) MarshalJSON() ([]byte, error) {
return json.Marshal(&curveElement{
CurveID: z.curveID,
ElementBytes: z.Bytes(),
})
}
func (g *G1) UnmarshalJSON(raw []byte) error {
ce := &curveElement{}
err := json.Unmarshal(raw, ce)
if err != nil {
return err
}
g.curveID = ce.CurveID
g1, err := Curves[g.curveID].NewG1FromBytes(ce.ElementBytes)
if err != nil {
return err
}
g.g1 = g1.g1
return nil
}
func (g *G1) MarshalJSON() ([]byte, error) {
return json.Marshal(&curveElement{
CurveID: g.curveID,
ElementBytes: g.Bytes(),
})
}
func (g *G2) UnmarshalJSON(raw []byte) error {
ce := &curveElement{}
err := json.Unmarshal(raw, ce)
if err != nil {
return err
}
g.curveID = ce.CurveID
g2, err := Curves[g.curveID].NewG2FromBytes(ce.ElementBytes)
if err != nil {
return err
}
g.g2 = g2.g2
return nil
}
func (g *G2) MarshalJSON() ([]byte, error) {
return json.Marshal(&curveElement{
CurveID: g.curveID,
ElementBytes: g.Bytes(),
})
}
func (g *Gt) UnmarshalJSON(raw []byte) error {
ce := &curveElement{}
err := json.Unmarshal(raw, ce)
if err != nil {
return err
}
g.curveID = ce.CurveID
gt, err := Curves[g.curveID].NewGtFromBytes(ce.ElementBytes)
if err != nil {
return err
}
g.gt = gt.gt
return nil
}
func (g *Gt) MarshalJSON() ([]byte, error) {
return json.Marshal(&curveElement{
CurveID: g.curveID,
ElementBytes: g.Bytes(),
})
}