-
Notifications
You must be signed in to change notification settings - Fork 162
/
marshal.go
78 lines (62 loc) · 2.32 KB
/
marshal.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
// Copyright 2020 ConsenSys Software Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// FOO
package secp256k1
import (
"errors"
"io"
"github.com/consensys/gnark-crypto/ecc/secp256k1/fp"
)
// SizeOfG1AffineCompressed represents the size in bytes that a G1Affine need in binary form, compressed
const SizeOfG1AffineCompressed = 32
// SizeOfG1AffineUncompressed represents the size in bytes that a G1Affine need in binary form, uncompressed
const SizeOfG1AffineUncompressed = SizeOfG1AffineCompressed * 2
// RawBytes returns binary representation of p (stores X and Y coordinate)
func (p *G1Affine) RawBytes() (res [SizeOfG1AffineUncompressed]byte) {
// not compressed
// we store the Y coordinate
fp.BigEndian.PutElement((*[fp.Bytes]byte)(res[32:32+fp.Bytes]), p.Y)
// we store the X coordinate
fp.BigEndian.PutElement((*[fp.Bytes]byte)(res[0:0+fp.Bytes]), p.X)
return
}
// SetBytes sets p from binary representation in buf and returns number of consumed bytes
//
// bytes in buf must match RawBytes()
//
// if buf is too short io.ErrShortBuffer is returned
//
// this check if the resulting point is on the curve and in the correct subgroup
func (p *G1Affine) SetBytes(buf []byte) (int, error) {
return p.setBytes(buf, true)
}
// we store both X and Y and there is no spare bit for flagging
func (p *G1Affine) setBytes(buf []byte, subGroupCheck bool) (int, error) {
if len(buf) < SizeOfG1AffineCompressed {
return 0, io.ErrShortBuffer
}
// uncompressed point
// read X and Y coordinates
if err := p.X.SetBytesCanonical(buf[:fp.Bytes]); err != nil {
return 0, err
}
if err := p.Y.SetBytesCanonical(buf[fp.Bytes : fp.Bytes*2]); err != nil {
return 0, err
}
// subgroup check
if subGroupCheck && !p.IsInSubGroup() {
return 0, errors.New("invalid point: subgroup check failed")
}
return SizeOfG1AffineUncompressed, nil
}