-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathed448.hxx
429 lines (362 loc) · 13.7 KB
/
ed448.hxx
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
/**
* @file goldilocks/ed448.hxx
* @author Mike Hamburg
*
* @copyright
* Copyright (c) 2015-2016 Cryptography Research, Inc. \n
* Copyright (c) 2018 the libgoldilocks contributors. \n
* Released under the MIT License. See LICENSE.txt for license information.
*/
#ifndef __GOLDILOCKS_ED448_HXX__
#define __GOLDILOCKS_ED448_HXX__ 1
/*
* Example Goldilocks crypto routines, C++ wrapper.
* @warning These are merely examples, though they ought to be secure. But real
* protocols will decide differently on magic numbers, formats, which items to
* hash, etc.
* @warning Experimental! The names, parameter orders etc are likely to change.
*/
#include <./eddsa.hxx>
#include <./point_448.hxx>
#include <./ed448.h>
#include <./shake.hxx>
/** @cond internal */
#if __cplusplus >= 201103L
#define GOLDILOCKS_NOEXCEPT noexcept
#else
#define GOLDILOCKS_NOEXCEPT throw()
#endif
/** @endcond */
/** Namespace for all libgoldilocks C++ objects. */
namespace goldilocks {
/** A public key for crypto over some Group */
template <typename Group> struct EdDSA;
/** A public key for crypto over Ed448-Goldilocks */
template<> struct EdDSA<Ed448Goldilocks> {
/** @cond internal */
template<class CRTP, Prehashed> class Signing;
template<class CRTP, Prehashed> class Verification;
class PublicKeyBase;
class PrivateKeyBase;
typedef class PrivateKeyBase PrivateKey, PrivateKeyPure, PrivateKeyPh;
typedef class PublicKeyBase PublicKey, PublicKeyPure, PublicKeyPh;
/** @endcond */
/**
* Signatures support a "context" block, which allows you to domain separate them if
* (for some reason) it's annoying to domain separate the message itself. The default
* is no context. For Ed448, contexts are built-in and mandatory, so "no context"
* is the same as the empty string.
*/
#if GOLDILOCKS_EDDSA_448_SUPPORTS_CONTEXTLESS_SIGS
static inline const Block NO_CONTEXT() { return Block(GOLDILOCKS_ED448_NO_CONTEXT,0); }
#else
static inline const Block NO_CONTEXT() { return Block(NULL,0); }
#endif
/** Prehash context for EdDSA. */
class Prehash : public SHAKE<256> {
private:
/** @cond internal */
typedef SHAKE<256> Super;
SecureBuffer context_;
template<class T, Prehashed Ph> friend class Signing;
template<class T, Prehashed Ph> friend class Verification;
void init() /*throw(LengthException)*/ {
Super::reset();
if (context_.size() > 255) {
throw LengthException();
}
goldilocks_ed448_prehash_init((goldilocks_shake256_ctx_s *)wrapped);
}
/** @endcond */
public:
/** Number of output bytes in prehash */
static const size_t OUTPUT_BYTES = Super::DEFAULT_OUTPUT_BYTES;
/** Create the prehash */
Prehash(const Block &context = NO_CONTEXT()) /*throw(LengthException)*/ {
context_ = context;
init();
}
/** Reset this hash */
void reset() GOLDILOCKS_NOEXCEPT { init(); }
/** Output from this hash */
SecureBuffer final() /*throw(std::bad_alloc)*/ {
SecureBuffer ret = Super::final(OUTPUT_BYTES);
reset();
return ret;
}
/** Output from this hash */
void final(Buffer &b) /*throw(LengthException)*/ {
if (b.size() != OUTPUT_BYTES) throw LengthException();
Super::final(b);
reset();
}
};
/** Signing (i.e. private) key class template */
template<class CRTP, Prehashed ph> class Signing;
/** Signing (i.e. private) key class, PureEdDSA version */
template<class CRTP> class Signing<CRTP,PURE> {
public:
/**
* Sign a message.
* @param [in] message The message to be signed.
* @param [in] context A context for the signature; must be at most 255 bytes.
*
*/
inline SecureBuffer sign (
const Block &message,
const Block &context = NO_CONTEXT()
) const /* throw(LengthException, std::bad_alloc) */ {
if (context.size() > 255) {
throw LengthException();
}
SecureBuffer out(CRTP::SIG_BYTES);
goldilocks_ed448_sign (
out.data(),
((const CRTP*)this)->priv_.data(),
((const CRTP*)this)->pub_.data(),
message.data(),
message.size(),
0,
context.data(),
context.size()
);
return out;
}
};
/** Signing (i.e. private) key class, prehashed version */
template<class CRTP> class Signing<CRTP,PREHASHED> {
public:
/** Sign a prehash context, and reset the context */
inline SecureBuffer sign_prehashed ( const Prehash &ph ) const /*throw(std::bad_alloc)*/ {
SecureBuffer out(CRTP::SIG_BYTES);
goldilocks_ed448_sign_prehash (
out.data(),
((const CRTP*)this)->priv_.data(),
((const CRTP*)this)->pub_.data(),
(const goldilocks_ed448_prehash_ctx_s*)ph.wrapped,
ph.context_.data(),
ph.context_.size()
);
return out;
}
/** Sign a message using the prehasher */
inline SecureBuffer sign_with_prehash (
const Block &message,
const Block &context = NO_CONTEXT()
) const /*throw(LengthException,CryptoException)*/ {
Prehash ph(context);
ph += message;
return sign_prehashed(ph);
}
};
/** Signing (i.e. private) key base class */
class PrivateKeyBase
: public Serializable<PrivateKeyBase>
, public Signing<PrivateKeyBase,PURE>
, public Signing<PrivateKeyBase,PREHASHED> {
public:
/** Type of public key corresponding to this private key */
typedef class PublicKeyBase PublicKey;
private:
/** @cond internal */
friend class PublicKeyBase;
friend class Signing<PrivateKey,PURE>;
friend class Signing<PrivateKey,PREHASHED>;
/** @endcond */
/** The pre-expansion form of the signing key. */
FixedArrayBuffer<GOLDILOCKS_EDDSA_448_PRIVATE_BYTES> priv_;
/** The post-expansion public key. */
FixedArrayBuffer<GOLDILOCKS_EDDSA_448_PUBLIC_BYTES> pub_;
public:
/** Underlying group */
typedef Ed448Goldilocks Group;
/** Signature size. */
static const size_t SIG_BYTES = GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES;
/** Serialization size. */
static const size_t SER_BYTES = GOLDILOCKS_EDDSA_448_PRIVATE_BYTES;
/** Create but don't initialize */
inline explicit PrivateKeyBase(const NOINIT&) GOLDILOCKS_NOEXCEPT : priv_((NOINIT())), pub_((NOINIT())) { }
/** Read a private key from a string */
inline explicit PrivateKeyBase(const FixedBlock<SER_BYTES> &b) GOLDILOCKS_NOEXCEPT { *this = b; }
/** Copy constructor */
inline PrivateKeyBase(const PrivateKey &k) GOLDILOCKS_NOEXCEPT { *this = k; }
/** Create at random */
inline explicit PrivateKeyBase(Rng &r) GOLDILOCKS_NOEXCEPT : priv_(r) {
goldilocks_ed448_derive_public_key(pub_.data(), priv_.data());
}
/** Assignment from string */
inline PrivateKeyBase &operator=(const FixedBlock<SER_BYTES> &b) GOLDILOCKS_NOEXCEPT {
memcpy(priv_.data(),b.data(),b.size());
goldilocks_ed448_derive_public_key(pub_.data(), priv_.data());
return *this;
}
/** Copy assignment */
inline PrivateKeyBase &operator=(const PrivateKey &k) GOLDILOCKS_NOEXCEPT {
memcpy(priv_.data(),k.priv_.data(), priv_.size());
memcpy(pub_.data(),k.pub_.data(), pub_.size());
return *this;
}
/** Serialization size. */
inline size_t ser_size() const GOLDILOCKS_NOEXCEPT { return SER_BYTES; }
/** Serialize into a buffer. */
inline void serialize_into(unsigned char *x) const GOLDILOCKS_NOEXCEPT {
memcpy(x,priv_.data(), priv_.size());
}
/** Convert to X format (to be used for key exchange) */
inline SecureBuffer convert_to_x() const {
SecureBuffer out(GOLDILOCKS_X448_PRIVATE_BYTES);
goldilocks_ed448_convert_private_key_to_x448(out.data(), priv_.data());
return out;
}
/** Return the corresponding public key */
inline PublicKey pub() const GOLDILOCKS_NOEXCEPT {
PublicKey pub(*this);
return pub;
}
}; /* class PrivateKey */
/** Verification (i.e. public) EdDSA key, PureEdDSA version. */
template<class CRTP> class Verification<CRTP,PURE> {
public:
/** Verify a signature, returning GOLDILOCKS_FAILURE if verification fails */
inline goldilocks_error_t GOLDILOCKS_WARN_UNUSED verify_noexcept (
const FixedBlock<GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES> &sig,
const Block &message,
const Block &context = NO_CONTEXT()
) const /*GOLDILOCKS_NOEXCEPT*/ {
if (context.size() > 255) {
return GOLDILOCKS_FAILURE;
}
return goldilocks_ed448_verify (
sig.data(),
((const CRTP*)this)->pub_.data(),
message.data(),
message.size(),
0,
context.data(),
context.size()
);
}
/** Verify a signature, throwing an exception if verification fails
* @param [in] sig The signature.
* @param [in] message The signed message.
* @param [in] context A context for the signature; must be at most 255 bytes.
*
*/
inline void verify (
const FixedBlock<GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES> &sig,
const Block &message,
const Block &context = NO_CONTEXT()
) const /*throw(LengthException,CryptoException)*/ {
if (context.size() > 255) {
throw LengthException();
}
if (GOLDILOCKS_SUCCESS != verify_noexcept( sig, message, context )) {
throw CryptoException();
}
}
};
/** Verification (i.e. public) EdDSA key, prehashed version. */
template<class CRTP> class Verification<CRTP,PREHASHED> {
public:
/** Verify that a signature is valid for a given prehashed message, given the context. */
inline goldilocks_error_t GOLDILOCKS_WARN_UNUSED verify_prehashed_noexcept (
const FixedBlock<GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES> &sig,
const Prehash &ph
) const /*GOLDILOCKS_NOEXCEPT*/ {
return goldilocks_ed448_verify_prehash (
sig.data(),
((const CRTP*)this)->pub_.data(),
(const goldilocks_ed448_prehash_ctx_s*)ph.wrapped,
ph.context_.data(),
ph.context_.size()
);
}
/** Verify that a signature is valid for a given prehashed message, given the context. */
inline void verify_prehashed (
const FixedBlock<GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES> &sig,
const Prehash &ph
) const /*throw(CryptoException)*/ {
if (GOLDILOCKS_SUCCESS != goldilocks_ed448_verify_prehash (
sig.data(),
((const CRTP*)this)->pub_.data(),
(const goldilocks_ed448_prehash_ctx_s*)ph.wrapped,
ph.context_.data(),
ph.context_.size()
)) {
throw CryptoException();
}
}
/** Hash and verify a message, using the prehashed verification mode. */
inline void verify_with_prehash (
const FixedBlock<GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES> &sig,
const Block &message,
const Block &context = NO_CONTEXT()
) const /*throw(LengthException,CryptoException)*/ {
Prehash ph(context);
ph += message;
verify_prehashed(sig,ph);
}
};
/** EdDSA Public key base class. */
class PublicKeyBase
: public Serializable<PublicKeyBase>
, public Verification<PublicKeyBase,PURE>
, public Verification<PublicKeyBase,PREHASHED> {
public:
/** Private key corresponding to this type of public key */
typedef class PrivateKeyBase PrivateKey;
private:
/** @cond internal */
friend class PrivateKeyBase;
friend class Verification<PublicKey,PURE>;
friend class Verification<PublicKey,PREHASHED>;
private:
/** The pre-expansion form of the signature */
FixedArrayBuffer<GOLDILOCKS_EDDSA_448_PUBLIC_BYTES> pub_;
/** @endcond */
public:
/* PERF FUTURE: Pre-cached decoding? Precomputed table?? */
/** Underlying group */
typedef Ed448Goldilocks Group;
/** Signature size. */
static const size_t SIG_BYTES = GOLDILOCKS_EDDSA_448_SIGNATURE_BYTES;
/** Serialization size. */
static const size_t SER_BYTES = GOLDILOCKS_EDDSA_448_PRIVATE_BYTES;
/** Create but don't initialize */
inline explicit PublicKeyBase(const NOINIT&) GOLDILOCKS_NOEXCEPT : pub_((NOINIT())) { }
/** Read a private key from a string */
inline explicit PublicKeyBase(const FixedBlock<SER_BYTES> &b) GOLDILOCKS_NOEXCEPT { *this = b; }
/** Copy constructor */
inline PublicKeyBase(const PublicKeyBase &k) GOLDILOCKS_NOEXCEPT { *this = k; }
/** Copy constructor */
inline explicit PublicKeyBase(const PrivateKey &k) GOLDILOCKS_NOEXCEPT { *this = k; }
/** Assignment from string */
inline PublicKey &operator=(const FixedBlock<SER_BYTES> &b) GOLDILOCKS_NOEXCEPT {
memcpy(pub_.data(),b.data(),b.size());
return *this;
}
/** Assignment from private key */
inline PublicKey &operator=(const PublicKey &p) GOLDILOCKS_NOEXCEPT {
return *this = p.pub_;
}
/** Assignment from private key */
inline PublicKey &operator=(const PrivateKey &p) GOLDILOCKS_NOEXCEPT {
return *this = p.pub_;
}
/** Serialization size. */
inline size_t ser_size() const GOLDILOCKS_NOEXCEPT { return SER_BYTES; }
/** Serialize into a buffer. */
inline void serialize_into(unsigned char *x) const GOLDILOCKS_NOEXCEPT {
memcpy(x,pub_.data(), pub_.size());
}
/** Convert to X format (to be used for key exchange) */
inline SecureBuffer convert_to_x() const {
SecureBuffer out(GOLDILOCKS_X448_PRIVATE_BYTES);
goldilocks_ed448_convert_public_key_to_x448(out.data(), pub_.data());
return out;
}
}; /* class PublicKey */
}; /* template<> struct EdDSA<Ed448Goldilocks> */
#undef GOLDILOCKS_NOEXCEPT
} /* namespace goldilocks */
#endif /* __GOLDILOCKS_ED448_HXX__ */