-
Notifications
You must be signed in to change notification settings - Fork 6
/
server.go
263 lines (212 loc) · 7.94 KB
/
server.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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// SPDX-License-Identifier: MIT
//
// Copyright (C) 2020-2022 Daniel Bourdrez. All Rights Reserved.
//
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree or at
// https://spdx.org/licenses/MIT.html
package opaque
import (
"errors"
"fmt"
group "github.com/bytemare/crypto"
"github.com/bytemare/opaque/internal"
"github.com/bytemare/opaque/internal/ake"
"github.com/bytemare/opaque/internal/encoding"
"github.com/bytemare/opaque/internal/masking"
"github.com/bytemare/opaque/internal/tag"
"github.com/bytemare/opaque/message"
)
var (
// ErrNoServerKeyMaterial indicates that the server's key material has not been set.
ErrNoServerKeyMaterial = errors.New("key material not set: call SetKeyMaterial() to set values")
// ErrAkeInvalidClientMac indicates that the MAC contained in the KE3 message is not valid in the given session.
ErrAkeInvalidClientMac = errors.New("failed to authenticate client: invalid client mac")
// ErrInvalidState indicates that the given state is not valid due to a wrong length.
ErrInvalidState = errors.New("invalid state length")
// ErrInvalidEnvelopeLength indicates the envelope contained in the record is of invalid length.
ErrInvalidEnvelopeLength = errors.New("record has invalid envelope length")
// ErrInvalidPksLength indicates the input public key is not of right length.
ErrInvalidPksLength = errors.New("input server public key's length is invalid")
// ErrInvalidOPRFSeedLength indicates that the OPRF seed is not of right length.
ErrInvalidOPRFSeedLength = errors.New("input OPRF seed length is invalid (must be of hash output length)")
// ErrZeroSKS indicates that the server's private key is a zero scalar.
ErrZeroSKS = errors.New("server private key is zero")
)
// Server represents an OPAQUE Server, exposing its functions and holding its state.
type Server struct {
Deserialize *Deserializer
conf *internal.Configuration
Ake *ake.Server
*keyMaterial
}
type keyMaterial struct {
serverIdentity []byte
serverSecretKey *group.Scalar
serverPublicKey []byte
oprfSeed []byte
}
// NewServer returns a Server instantiation given the application Configuration.
func NewServer(c *Configuration) (*Server, error) {
if c == nil {
c = DefaultConfiguration()
}
conf, err := c.toInternal()
if err != nil {
return nil, err
}
return &Server{
Deserialize: &Deserializer{conf: conf},
conf: conf,
Ake: ake.NewServer(),
keyMaterial: nil,
}, nil
}
// GetConf return the internal configuration.
func (s *Server) GetConf() *internal.Configuration {
return s.conf
}
func (s *Server) oprfResponse(element *group.Element, oprfSeed, credentialIdentifier []byte) *group.Element {
seed := s.conf.KDF.Expand(
oprfSeed,
encoding.SuffixString(credentialIdentifier, tag.ExpandOPRF),
internal.SeedLength,
)
ku := s.conf.OPRF.DeriveKey(seed, []byte(tag.DeriveKeyPair))
return s.conf.OPRF.Evaluate(ku, element)
}
// RegistrationResponse returns a RegistrationResponse message to the input RegistrationRequest message and given
// identifiers.
func (s *Server) RegistrationResponse(
req *message.RegistrationRequest,
serverPublicKey *group.Element,
credentialIdentifier, oprfSeed []byte,
) *message.RegistrationResponse {
z := s.oprfResponse(req.BlindedMessage, oprfSeed, credentialIdentifier)
return &message.RegistrationResponse{
EvaluatedMessage: z,
Pks: serverPublicKey,
}
}
func (s *Server) credentialResponse(
req *message.CredentialRequest,
serverPublicKey []byte,
record *message.RegistrationRecord,
credentialIdentifier, oprfSeed, maskingNonce []byte,
) *message.CredentialResponse {
z := s.oprfResponse(req.BlindedMessage, oprfSeed, credentialIdentifier)
maskingNonce, maskedResponse := masking.Mask(
s.conf,
maskingNonce,
record.MaskingKey,
serverPublicKey,
record.Envelope,
)
return message.NewCredentialResponse(z, maskingNonce, maskedResponse)
}
// ServerLoginInitOptions enables setting optional values for the session, which default to secure random values if not
// set.
type ServerLoginInitOptions struct {
// EphemeralSecretKey: optional
EphemeralSecretKey *group.Scalar
// Nonce: optional
Nonce []byte
// NonceLength: optional
NonceLength uint
}
func getServerLoginInitOptions(options []ServerLoginInitOptions) *ake.Options {
var op ake.Options
if len(options) != 0 {
op.EphemeralSecretKey = options[0].EphemeralSecretKey
op.Nonce = options[0].Nonce
op.NonceLength = options[0].NonceLength
}
return &op
}
// SetKeyMaterial set the server's identity and mandatory key material to be used during LoginInit().
// All these values must be the same as used during client registration and remain the same across protocol execution
// for a given registered client.
//
// - serverIdentity can be nil, in which case it will be set to serverPublicKey.
// - serverSecretKey is the server's secret AKE key.
// - serverPublicKey is the server's public AKE key to the serverSecretKey.
// - oprfSeed is the long-term OPRF input seed.
func (s *Server) SetKeyMaterial(serverIdentity, serverSecretKey, serverPublicKey, oprfSeed []byte) error {
sks := s.conf.Group.NewScalar()
if err := sks.Decode(serverSecretKey); err != nil {
return fmt.Errorf("invalid server AKE secret key: %w", err)
}
if sks.IsZero() {
return ErrZeroSKS
}
if len(oprfSeed) != s.conf.Hash.Size() {
return ErrInvalidOPRFSeedLength
}
if len(serverPublicKey) != s.conf.Group.ElementLength() {
return ErrInvalidPksLength
}
if err := s.conf.Group.NewElement().Decode(serverPublicKey); err != nil {
return fmt.Errorf("invalid server public key: %w", err)
}
s.keyMaterial = &keyMaterial{
serverIdentity: serverIdentity,
serverSecretKey: sks,
serverPublicKey: serverPublicKey,
oprfSeed: oprfSeed,
}
return nil
}
// LoginInit responds to a KE1 message with a KE2 message a client record.
func (s *Server) LoginInit(
ke1 *message.KE1,
record *ClientRecord,
options ...ServerLoginInitOptions,
) (*message.KE2, error) {
if s.keyMaterial == nil {
return nil, ErrNoServerKeyMaterial
}
if len(record.Envelope) != s.conf.EnvelopeSize {
return nil, ErrInvalidEnvelopeLength
}
// We've checked that the server's public key and the client's envelope are of correct length,
// thus ensuring that the subsequent xor-ing input is the same length as the encryption pad.
op := getServerLoginInitOptions(options)
response := s.credentialResponse(ke1.CredentialRequest, s.keyMaterial.serverPublicKey,
record.RegistrationRecord, record.CredentialIdentifier, s.keyMaterial.oprfSeed, record.TestMaskNonce)
identities := ake.Identities{
ClientIdentity: record.ClientIdentity,
ServerIdentity: s.keyMaterial.serverIdentity,
}
identities.SetIdentities(record.PublicKey, s.keyMaterial.serverPublicKey)
ke2 := s.Ake.Response(s.conf, &identities, s.keyMaterial.serverSecretKey, record.PublicKey, ke1, response, *op)
return ke2, nil
}
// LoginFinish returns an error if the KE3 received from the client holds an invalid mac, and nil if correct.
func (s *Server) LoginFinish(ke3 *message.KE3) error {
if !s.Ake.Finalize(s.conf, ke3) {
return ErrAkeInvalidClientMac
}
return nil
}
// SessionKey returns the session key if the previous call to LoginInit() was successful.
func (s *Server) SessionKey() []byte {
return s.Ake.SessionKey()
}
// ExpectedMAC returns the expected client MAC if the previous call to LoginInit() was successful.
func (s *Server) ExpectedMAC() []byte {
return s.Ake.ExpectedMAC()
}
// SetAKEState sets the internal state of the AKE server from the given bytes.
func (s *Server) SetAKEState(state []byte) error {
if len(state) != s.conf.MAC.Size()+s.conf.KDF.Size() {
return ErrInvalidState
}
if err := s.Ake.SetState(state[:s.conf.MAC.Size()], state[s.conf.MAC.Size():]); err != nil {
return fmt.Errorf("setting AKE state: %w", err)
}
return nil
}
// SerializeState returns the internal state of the AKE server serialized to bytes.
func (s *Server) SerializeState() []byte {
return s.Ake.SerializeState()
}