-
Notifications
You must be signed in to change notification settings - Fork 17
/
sign.go
192 lines (155 loc) · 5.7 KB
/
sign.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
// Copyright (c) 2017-2019 isis agora lovecruft. All rights reserved.
// Copyright (c) 2019 Web 3 Foundation. All rights reserved.
// Copyright (c) 2021 Oasis Labs Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package sr25519
import (
"fmt"
"io"
"github.com/oasisprotocol/curve25519-voi/curve"
"github.com/oasisprotocol/curve25519-voi/curve/scalar"
)
const (
// SignatureSize is the size of a sr25519 signature in bytes.
SignatureSize = 64
protoLabel = "Schnorr-sig"
aLabel = "sign:pk"
rLabel = "sign:R"
cLabel = "sign:c"
witnessScalarLabel = "signing"
)
var errSignatureNotMarkedSchnorrkel = fmt.Errorf("sr25519: not a sr25519 signature")
func markSignatureSchnorrkel(b []byte) {
b[63] |= 128
}
type Signature struct {
rCompressed curve.CompressedRistretto
s *scalar.Scalar
}
// UnmarshalBinary decodes a binary marshaled Signature.
func (sig *Signature) UnmarshalBinary(data []byte) error {
sig.rCompressed.Identity()
sig.s = nil
if l := len(data); l != SignatureSize {
return fmt.Errorf("sr25519: bad Signature size: %v", l)
}
// Check that the upper-most bit is set (to distinguish sr25519
// signatures from Ed25519 signatures).
if data[63]&128 == 0 {
return errSignatureNotMarkedSchnorrkel
}
// Copy and clear the upper-most bit.
var upper [scalar.ScalarSize]byte
copy(upper[:], data[32:])
upper[31] &= 127
// Check that the scalar is encoded in canonical form.
if !scalar.ScMinimalVartime(upper[:]) {
return fmt.Errorf("sr25519: non-canonical signature scalar")
}
sigScalar, err := scalar.NewFromCanonicalBytes(upper[:])
if err != nil {
return fmt.Errorf("sr25519: failed to deserialize signature scalar: %v", err)
}
// Copy (but do not decompress) the point.
if _, err := sig.rCompressed.SetBytes(data[:32]); err != nil {
return fmt.Errorf("sr25519: failed to deserialize signature point: %v", err)
}
sig.s = sigScalar
return nil
}
// MarshalBinary encodes a Signature into binary form.
func (sig *Signature) MarshalBinary() ([]byte, error) {
var b []byte
switch sig.s {
case nil:
b = make([]byte, SignatureSize)
default:
b = make([]byte, 0, SignatureSize)
b = append(b, sig.rCompressed[:]...)
scalarBytes, err := sig.s.MarshalBinary()
if err != nil {
return nil, fmt.Errorf("sr25519: failed to serialize signature scalar: %v", err)
}
b = append(b, scalarBytes...)
}
markSignatureSchnorrkel(b)
return b, nil
}
// NewSignatureFromBytes constructs a Signature from the byte representation.
func NewSignatureFromBytes(b []byte) (*Signature, error) {
var s Signature
if err := s.UnmarshalBinary(b); err != nil {
return nil, err
}
return &s, nil
}
func deriveVerifyChallengeScalar(publicKey *PublicKey, transcript *SigningTranscript, signature *Signature) *scalar.Scalar {
t := transcript.clone()
t.protoName(protoLabel)
t.commitPoint(aLabel, &publicKey.compressed)
t.commitPoint(rLabel, &signature.rCompressed)
return t.challengeScalar(cLabel)
}
// Verify verifies a signature by a public key on a transcript.
func (pk *PublicKey) Verify(transcript *SigningTranscript, signature *Signature) bool {
if pk.point == nil || signature.s == nil {
return false
}
var r curve.RistrettoPoint
if _, err := r.SetCompressed(&signature.rCompressed); err != nil {
return false
}
var negA curve.RistrettoPoint
negA.Neg(pk.point)
k := deriveVerifyChallengeScalar(pk, transcript, signature)
var rDiff curve.RistrettoPoint
return rDiff.TripleScalarMulBasepointVartime(k, &negA, signature.s, &r).IsIdentity()
}
// Sign signs a transcript with a key pair, and provided entropy source.
// If rng is nil, crypto/rand.Reader will be used.
func (kp *KeyPair) Sign(rng io.Reader, transcript *SigningTranscript) (*Signature, error) {
t := transcript.clone()
t.protoName(protoLabel)
t.commitPoint(aLabel, &kp.pk.compressed)
rScalar, err := t.witnessScalar(witnessScalarLabel, [][]byte{kp.sk.nonce[:]}, rng)
if err != nil {
return nil, fmt.Errorf("sr25519: failed to generate witness scalar: %w", err)
}
var (
sig Signature
r curve.RistrettoPoint
)
r.MulBasepoint(curve.RISTRETTO_BASEPOINT_TABLE, rScalar)
sig.rCompressed.SetRistrettoPoint(&r)
t.commitPoint(rLabel, &sig.rCompressed)
k := t.challengeScalar(cLabel)
sig.s = scalar.New().Mul(k, kp.sk.key)
sig.s.Add(sig.s, rScalar)
return &sig, nil
}