-
Notifications
You must be signed in to change notification settings - Fork 0
/
P521.cpp
1642 lines (1511 loc) · 54.7 KB
/
P521.cpp
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2016 Southern Storm Software, Pty Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include "P521.h"
#include "Crypto.h"
#include "RNG.h"
#include "SHA512.h"
#include "utility/LimbUtil.h"
#include <string.h>
/**
* \class P521 P521.h <P521.h>
* \brief Elliptic curve operations with the NIST P-521 curve.
*
* This class supports both ECDH key exchange and ECDSA signatures.
*
* \note The public functions in this class need a substantial amount of
* stack space to store intermediate results while the curve function is
* being evaluated. About 2k of free stack space is recommended for safety.
*
* References: NIST FIPS 186-4,
* <a href="http://tools.ietf.org/html/rfc6090">RFC 6090</a>,
* <a href="http://tools.ietf.org/html/rfc6979">RFC 6979</a>,
* <a href="http://tools.ietf.org/html/rfc6090">RFC 5903</a>
*
* \sa Curve25519
*/
// Number of limbs that are needed to represent a 521-bit number.
#define NUM_LIMBS_521BIT NUM_LIMBS_BITS(521)
// Number of limbs that are needed to represent a 1042-bit number.
// To simply things we also require that this be twice the size of
// NUM_LIMB_521BIT which involves a little wastage at the high end
// of one extra limb for 8-bit and 32-bit limbs. There is no
// wastage for 16-bit limbs.
#define NUM_LIMBS_1042BIT (NUM_LIMBS_BITS(521) * 2)
// The overhead of clean() calls in mul(), etc can add up to a lot of
// processing time. Only do such cleanups if strict mode has been enabled.
#if defined(P521_STRICT_CLEAN)
#define strict_clean(x) clean(x)
#else
#define strict_clean(x) do { ; } while (0)
#endif
// Expand the partial 9-bit left over limb at the top of a 521-bit number.
#if BIGNUMBER_LIMB_8BIT
#define LIMB_PARTIAL(value) ((uint8_t)(value)), \
((uint8_t)((value) >> 8))
#else
#define LIMB_PARTIAL(value) (value)
#endif
/** @cond */
// The group order "q" value from RFC 4754 and RFC 5903. This is the
// same as the "n" value from Appendix D.1.2.5 of NIST FIPS 186-4.
static limb_t const P521_q[NUM_LIMBS_521BIT] PROGMEM = {
LIMB_PAIR(0x91386409, 0xbb6fb71e), LIMB_PAIR(0x899c47ae, 0x3bb5c9b8),
LIMB_PAIR(0xf709a5d0, 0x7fcc0148), LIMB_PAIR(0xbf2f966b, 0x51868783),
LIMB_PAIR(0xfffffffa, 0xffffffff), LIMB_PAIR(0xffffffff, 0xffffffff),
LIMB_PAIR(0xffffffff, 0xffffffff), LIMB_PAIR(0xffffffff, 0xffffffff),
LIMB_PARTIAL(0x1ff)
};
// The "b" value from Appendix D.1.2.5 of NIST FIPS 186-4.
static limb_t const P521_b[NUM_LIMBS_521BIT] PROGMEM = {
LIMB_PAIR(0x6b503f00, 0xef451fd4), LIMB_PAIR(0x3d2c34f1, 0x3573df88),
LIMB_PAIR(0x3bb1bf07, 0x1652c0bd), LIMB_PAIR(0xec7e937b, 0x56193951),
LIMB_PAIR(0x8ef109e1, 0xb8b48991), LIMB_PAIR(0x99b315f3, 0xa2da725b),
LIMB_PAIR(0xb68540ee, 0x929a21a0), LIMB_PAIR(0x8e1c9a1f, 0x953eb961),
LIMB_PARTIAL(0x051)
};
// The "Gx" value from Appendix D.1.2.5 of NIST FIPS 186-4.
static limb_t const P521_Gx[NUM_LIMBS_521BIT] PROGMEM = {
LIMB_PAIR(0xc2e5bd66, 0xf97e7e31), LIMB_PAIR(0x856a429b, 0x3348b3c1),
LIMB_PAIR(0xa2ffa8de, 0xfe1dc127), LIMB_PAIR(0xefe75928, 0xa14b5e77),
LIMB_PAIR(0x6b4d3dba, 0xf828af60), LIMB_PAIR(0x053fb521, 0x9c648139),
LIMB_PAIR(0x2395b442, 0x9e3ecb66), LIMB_PAIR(0x0404e9cd, 0x858e06b7),
LIMB_PARTIAL(0x0c6)
};
// The "Gy" value from Appendix D.1.2.5 of NIST FIPS 186-4.
static limb_t const P521_Gy[NUM_LIMBS_521BIT] PROGMEM = {
LIMB_PAIR(0x9fd16650, 0x88be9476), LIMB_PAIR(0xa272c240, 0x353c7086),
LIMB_PAIR(0x3fad0761, 0xc550b901), LIMB_PAIR(0x5ef42640, 0x97ee7299),
LIMB_PAIR(0x273e662c, 0x17afbd17), LIMB_PAIR(0x579b4468, 0x98f54449),
LIMB_PAIR(0x2c7d1bd9, 0x5c8a5fb4), LIMB_PAIR(0x9a3bc004, 0x39296a78),
LIMB_PARTIAL(0x118)
};
/** @endcond */
/**
* \brief Evaluates the curve function.
*
* \param result The result of applying the curve function, which consists
* of the x and y values of the result point encoded in big-endian order.
* \param f The scalar value to multiply by \a point to create the \a result.
* This is assumed to be be a 521-bit number in big-endian order.
* \param point The curve point to multiply consisting of the x and y
* values encoded in big-endian order. If \a point is NULL, then the
* generator Gx and Gy values for the curve will be used instead.
*
* \return Returns true if \a f * \a point could be evaluated, or false if
* \a point is not a point on the curve.
*
* This function provides access to the raw curve operation for testing
* purposes. Normally an application would use a higher-level function
* like dh1(), dh2(), sign(), or verify().
*
* \sa dh1(), sign()
*/
bool P521::eval(uint8_t result[132], const uint8_t f[66], const uint8_t point[132])
{
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
bool ok;
// Unpack the curve point from the parameters and validate it.
if (point) {
BigNumberUtil::unpackBE(x, NUM_LIMBS_521BIT, point, 66);
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, point + 66, 66);
ok = validate(x, y);
} else {
memcpy_P(x, P521_Gx, sizeof(x));
memcpy_P(y, P521_Gy, sizeof(y));
ok = true;
}
// Evaluate the curve function.
evaluate(x, y, f);
// Pack the answer into the result array.
BigNumberUtil::packBE(result, 66, x, NUM_LIMBS_521BIT);
BigNumberUtil::packBE(result + 66, 66, y, NUM_LIMBS_521BIT);
// Clean up.
clean(x);
clean(y);
return ok;
}
/**
* \brief Performs phase 1 of an ECDH key exchange using P-521.
*
* \param k The key value to send to the other party as part of the exchange.
* \param f The generated secret value for this party. This must not be
* transmitted to any party or stored in permanent storage. It only needs
* to be kept in memory until dh2() is called.
*
* The \a f value is generated with \link RNGClass::rand() RNG.rand()\endlink.
* It is the caller's responsibility to ensure that the global random number
* pool has sufficient entropy to generate the 66 bytes of \a f safely
* before calling this function.
*
* The following example demonstrates how to perform a full ECDH
* key exchange using dh1() and dh2():
*
* \code
* uint8_t f[66];
* uint8_t k[132];
*
* // Generate the secret value "f" and the public value "k".
* P521::dh1(k, f);
*
* // Send "k" to the other party.
* ...
*
* // Read the "k" value that the other party sent to us.
* ...
*
* // Generate the shared secret in "f".
* if (!P521::dh2(k, f)) {
* // The received "k" value was invalid - abort the session.
* ...
* }
*
* // The "f" value can now be used to generate session keys for encryption.
* ...
* \endcode
*
* Reference: <a href="http://tools.ietf.org/html/rfc6090">RFC 6090</a>
*
* \sa dh2()
*/
void P521::dh1(uint8_t k[132], uint8_t f[66])
{
generatePrivateKey(f);
derivePublicKey(k, f);
}
/**
* \brief Performs phase 2 of an ECDH key exchange using P-521.
*
* \param k The public key value that was received from the other
* party as part of the exchange.
* \param f On entry, this is the secret value for this party that was
* generated by dh1(). On exit, this will be the shared secret.
*
* \return Returns true if the key exchange was successful, or false if
* the \a k value is invalid.
*
* Reference: <a href="http://tools.ietf.org/html/rfc6090">RFC 6090</a>
*
* \sa dh1()
*/
bool P521::dh2(const uint8_t k[132], uint8_t f[66])
{
// Unpack the (x, y) point from k.
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
BigNumberUtil::unpackBE(x, NUM_LIMBS_521BIT, k, 66);
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, k + 66, 66);
// Validate the curve point. We keep going to preserve the timing.
bool ok = validate(x, y);
// Evaluate the curve function.
evaluate(x, y, f);
// The secret key is the x component of the final value.
BigNumberUtil::packBE(f, 66, x, NUM_LIMBS_521BIT);
// Clean up.
clean(x);
clean(y);
return ok;
}
/**
* \brief Signs a message using a specific P-521 private key.
*
* \param signature The signature value.
* \param privateKey The private key to use to sign the message.
* \param message Points to the message to be signed.
* \param len The length of the \a message to be signed.
* \param hash The hash algorithm to use to hash the \a message before signing.
* If \a hash is NULL, then the \a message is assumed to already be a hash
* value from some previous process.
*
* This function generates deterministic ECDSA signatures according to
* RFC 6979. The \a hash function is used to generate the k value for
* the signature. If \a hash is NULL, then SHA512 is used.
* The \a hash object must be capable of HMAC mode.
*
* The length of the hashed message must be less than or equal to 64
* bytes in size. Longer messages will be truncated to 64 bytes.
*
* References: <a href="http://tools.ietf.org/html/rfc6090">RFC 6090</a>,
* <a href="http://tools.ietf.org/html/rfc6979">RFC 6979</a>
*
* \sa verify(), generatePrivateKey()
*/
void P521::sign(uint8_t signature[132], const uint8_t privateKey[66],
const void *message, size_t len, Hash *hash)
{
uint8_t hm[66];
uint8_t k[66];
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
limb_t t[NUM_LIMBS_521BIT];
uint64_t count = 0;
// Format the incoming message, hashing it if necessary.
if (hash) {
// Hash the message.
hash->reset();
hash->update(message, len);
len = hash->hashSize();
if (len > 64)
len = 64;
memset(hm, 0, 66 - len);
hash->finalize(hm + 66 - len, len);
} else {
// The message is the hash.
if (len > 64)
len = 64;
memset(hm, 0, 66 - len);
memcpy(hm + 66 - len, message, len);
}
// Keep generating k values until both r and s are non-zero.
for (;;) {
// Generate the k value deterministically according to RFC 6979.
if (hash)
generateK(k, hm, privateKey, hash, count);
else
generateK(k, hm, privateKey, count);
// Generate r = kG.x mod q.
memcpy_P(x, P521_Gx, sizeof(x));
memcpy_P(y, P521_Gy, sizeof(y));
evaluate(x, y, k);
BigNumberUtil::reduceQuick_P(x, x, P521_q, NUM_LIMBS_521BIT);
BigNumberUtil::packBE(signature, 66, x, NUM_LIMBS_521BIT);
// If r is zero, then we need to generate a new k value.
// This is utterly improbable, but let's be safe anyway.
if (BigNumberUtil::isZero(x, NUM_LIMBS_521BIT)) {
++count;
continue;
}
// Generate s = (privateKey * r + hm) / k mod q.
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, privateKey, 66);
mulQ(y, y, x);
BigNumberUtil::unpackBE(x, NUM_LIMBS_521BIT, hm, 66);
BigNumberUtil::add(x, x, y, NUM_LIMBS_521BIT);
BigNumberUtil::reduceQuick_P(x, x, P521_q, NUM_LIMBS_521BIT);
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, k, 66);
recipQ(t, y);
mulQ(x, x, t);
BigNumberUtil::packBE(signature + 66, 66, x, NUM_LIMBS_521BIT);
// Exit the loop if s is non-zero.
if (!BigNumberUtil::isZero(x, NUM_LIMBS_521BIT))
break;
// We need to generate a new k value according to RFC 6979.
// This is utterly improbable, but let's be safe anyway.
++count;
}
// Clean up.
clean(hm);
clean(k);
clean(x);
clean(y);
clean(t);
}
/**
* \brief Verifies a signature using a specific P-521 public key.
*
* \param signature The signature value to be verified.
* \param publicKey The public key to use to verify the signature.
* \param message The message whose signature is to be verified.
* \param len The length of the \a message to be verified.
* \param hash The hash algorithm to use to hash the \a message before
* verification. If \a hash is NULL, then the \a message is assumed to
* already be a hash value from some previous process.
*
* The length of the hashed message must be less than or equal to 64
* bytes in size. Longer messages will be truncated to 64 bytes.
*
* \return Returns true if the \a signature is valid for \a message;
* or false if the \a publicKey or \a signature is not valid.
*
* \sa sign()
*/
bool P521::verify(const uint8_t signature[132],
const uint8_t publicKey[132],
const void *message, size_t len, Hash *hash)
{
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
limb_t r[NUM_LIMBS_521BIT];
limb_t s[NUM_LIMBS_521BIT];
limb_t u1[NUM_LIMBS_521BIT];
limb_t u2[NUM_LIMBS_521BIT];
uint8_t t[66];
bool ok = false;
// Because we are operating on public values, we don't need to
// be as strict about constant time. Bail out early if there
// is a problem with the parameters.
// Unpack the signature. The values must be between 1 and q - 1.
BigNumberUtil::unpackBE(r, NUM_LIMBS_521BIT, signature, 66);
BigNumberUtil::unpackBE(s, NUM_LIMBS_521BIT, signature + 66, 66);
if (BigNumberUtil::isZero(r, NUM_LIMBS_521BIT) ||
BigNumberUtil::isZero(s, NUM_LIMBS_521BIT) ||
!BigNumberUtil::sub_P(x, r, P521_q, NUM_LIMBS_521BIT) ||
!BigNumberUtil::sub_P(x, s, P521_q, NUM_LIMBS_521BIT)) {
goto failed;
}
// Unpack the public key and check that it is a valid curve point.
BigNumberUtil::unpackBE(x, NUM_LIMBS_521BIT, publicKey, 66);
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, publicKey + 66, 66);
if (!validate(x, y)) {
goto failed;
}
// Hash the message to generate hm, which we store into u1.
if (hash) {
// Hash the message.
hash->reset();
hash->update(message, len);
len = hash->hashSize();
if (len > 64)
len = 64;
hash->finalize(u2, len);
BigNumberUtil::unpackBE(u1, NUM_LIMBS_521BIT, (uint8_t *)u2, len);
} else {
// The message is the hash.
if (len > 64)
len = 64;
BigNumberUtil::unpackBE(u1, NUM_LIMBS_521BIT, (uint8_t *)message, len);
}
// Compute u1 = hm * s^-1 mod q and u2 = r * s^-1 mod q.
recipQ(u2, s);
mulQ(u1, u1, u2);
mulQ(u2, r, u2);
// Compute the curve point R = u2 * publicKey + u1 * G.
BigNumberUtil::packBE(t, 66, u2, NUM_LIMBS_521BIT);
evaluate(x, y, t);
memcpy_P(u2, P521_Gx, sizeof(x));
memcpy_P(s, P521_Gy, sizeof(y));
BigNumberUtil::packBE(t, 66, u1, NUM_LIMBS_521BIT);
evaluate(u2, s, t);
addAffine(u2, s, x, y);
// If R.x = r mod q, then the signature is valid.
BigNumberUtil::reduceQuick_P(u1, u2, P521_q, NUM_LIMBS_521BIT);
ok = secure_compare(u1, r, NUM_LIMBS_521BIT * sizeof(limb_t));
// Clean up and exit.
failed:
clean(x);
clean(y);
clean(r);
clean(s);
clean(u1);
clean(u2);
clean(t);
return ok;
}
/**
* \brief Generates a private key for P-521 signing operations.
*
* \param privateKey The resulting private key.
*
* The private key is generated with \link RNGClass::rand() RNG.rand()\endlink.
* It is the caller's responsibility to ensure that the global random number
* pool has sufficient entropy to generate the 521 bits of the key safely
* before calling this function.
*
* \sa derivePublicKey(), sign()
*/
void P521::generatePrivateKey(uint8_t privateKey[66])
{
// Generate a random 521-bit value for the private key. The value
// must be generated uniformly at random between 1 and q - 1 where q
// is the group order (RFC 6090). We use the recommended algorithm
// from Appendix B of RFC 6090: generate a random 521-bit value
// and discard it if it is not within the range 1 to q - 1.
limb_t x[NUM_LIMBS_521BIT];
do {
RNG.rand((uint8_t *)x, sizeof(x));
#if BIGNUMBER_LIMB_8BIT
x[NUM_LIMBS_521BIT - 1] &= 0x01;
#else
x[NUM_LIMBS_521BIT - 1] &= 0x1FF;
#endif
BigNumberUtil::packBE(privateKey, 66, x, NUM_LIMBS_521BIT);
} while (BigNumberUtil::isZero(x, NUM_LIMBS_521BIT) ||
!BigNumberUtil::sub_P(x, x, P521_q, NUM_LIMBS_521BIT));
clean(x);
}
/**
* \brief Derives the public key from a private key for P-521
* signing operations.
*
* \param publicKey The public key.
* \param privateKey The private key, which is assumed to have been
* created by generatePrivateKey().
*
* \sa generatePrivateKey(), verify()
*/
void P521::derivePublicKey(uint8_t publicKey[132], const uint8_t privateKey[66])
{
// Evaluate the curve function starting with the generator.
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
memcpy_P(x, P521_Gx, sizeof(x));
memcpy_P(y, P521_Gy, sizeof(y));
evaluate(x, y, privateKey);
// Pack the (x, y) point into the public key.
BigNumberUtil::packBE(publicKey, 66, x, NUM_LIMBS_521BIT);
BigNumberUtil::packBE(publicKey + 66, 66, y, NUM_LIMBS_521BIT);
// Clean up.
clean(x);
clean(y);
}
/**
* \brief Validates a private key value to ensure that it is
* between 1 and q - 1.
*
* \param privateKey The private key value to validate.
* \return Returns true if \a privateKey is valid, false if not.
*
* \sa isValidPublicKey()
*/
bool P521::isValidPrivateKey(const uint8_t privateKey[66])
{
// The value "q" as a byte array from most to least significant.
static uint8_t const P521_q_bytes[66] PROGMEM = {
0x01, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
0xFF, 0xFA, 0x51, 0x86, 0x87, 0x83, 0xBF, 0x2F,
0x96, 0x6B, 0x7F, 0xCC, 0x01, 0x48, 0xF7, 0x09,
0xA5, 0xD0, 0x3B, 0xB5, 0xC9, 0xB8, 0x89, 0x9C,
0x47, 0xAE, 0xBB, 0x6F, 0xB7, 0x1E, 0x91, 0x38,
0x64, 0x09
};
uint8_t zeroTest = 0;
uint8_t posn = 66;
uint16_t borrow = 0;
while (posn > 0) {
--posn;
// Check for zero.
zeroTest |= privateKey[posn];
// Subtract P521_q_bytes from the key. If there is no borrow,
// then the key value was greater than or equal to q.
borrow = ((uint16_t)(privateKey[posn])) -
pgm_read_byte(&(P521_q_bytes[posn])) -
((borrow >> 8) & 0x01);
}
return zeroTest != 0 && borrow != 0;
}
/**
* \brief Validates a public key to ensure that it is a valid curve point.
*
* \param publicKey The public key value to validate.
* \return Returns true if \a publicKey is valid, false if not.
*
* \sa isValidPrivateKey()
*/
bool P521::isValidPublicKey(const uint8_t publicKey[132])
{
limb_t x[NUM_LIMBS_521BIT];
limb_t y[NUM_LIMBS_521BIT];
BigNumberUtil::unpackBE(x, NUM_LIMBS_521BIT, publicKey, 66);
BigNumberUtil::unpackBE(y, NUM_LIMBS_521BIT, publicKey + 66, 66);
bool ok = validate(x, y);
clean(x);
clean(y);
return ok;
}
/**
* \fn bool P521::isValidCurvePoint(const uint8_t point[132])
* \brief Validates a point to ensure that it is on the curve.
*
* \param point The point to validate.
* \return Returns true if \a point is valid and on the curve, false if not.
*
* This is a convenience function that calls isValidPublicKey() as the
* two operations are equivalent.
*/
/**
* \brief Evaluates the curve function by multiplying (x, y) by f.
*
* \param x The X co-ordinate of the curve point. Replaced with the X
* co-ordinate of the result on exit.
* \param y The Y co-ordinate of the curve point. Replaced with the Y
* co-ordinate of the result on exit.
* \param f The 521-bit scalar to multiply (x, y) by, most significant
* bit first.
*/
void P521::evaluate(limb_t *x, limb_t *y, const uint8_t f[66])
{
limb_t x1[NUM_LIMBS_521BIT];
limb_t y1[NUM_LIMBS_521BIT];
limb_t z1[NUM_LIMBS_521BIT];
limb_t x2[NUM_LIMBS_521BIT];
limb_t y2[NUM_LIMBS_521BIT];
limb_t z2[NUM_LIMBS_521BIT];
// We want the input in Jacobian co-ordinates. The point (x, y, z)
// corresponds to the affine point (x / z^2, y / z^3), so if we set z
// to 1 we end up with Jacobian co-ordinates. Remember that z is 1
// and continue on.
// Set the answer to the point-at-infinity initially (z = 0).
memset(x1, 0, sizeof(x1));
memset(y1, 0, sizeof(y1));
memset(z1, 0, sizeof(z1));
// Special handling for the highest bit. We can skip dblPoint()/addPoint()
// and simply conditionally move (x, y, z) into (x1, y1, z1).
uint8_t select = (f[0] & 0x01);
cmove(select, x1, x);
cmove(select, y1, y);
cmove1(select, z1); // z = 1
// Iterate over the remaining 520 bits of f from highest to lowest.
uint8_t mask = 0x80;
uint8_t fposn = 1;
for (uint16_t t = 520; t > 0; --t) {
// Double the answer.
dblPoint(x1, y1, z1, x1, y1, z1);
// Add (x, y, z) to (x1, y1, z1) for the next 1 bit.
// We must always do this to preserve the overall timing.
// The z value is always 1 so we can omit that argument.
addPoint(x2, y2, z2, x1, y1, z1, x, y/*, z*/);
// If the bit was 1, then move (x2, y2, z2) into (x1, y1, z1).
select = (f[fposn] & mask);
cmove(select, x1, x2);
cmove(select, y1, y2);
cmove(select, z1, z2);
// Move onto the next bit.
mask >>= 1;
if (!mask) {
++fposn;
mask = 0x80;
}
}
// Convert from Jacobian co-ordinates back into affine co-ordinates.
// x = x1 * (z1^2)^-1, y = y1 * (z1^3)^-1.
recip(x2, z1);
square(y2, x2);
mul(x, x1, y2);
mul(y2, y2, x2);
mul(y, y1, y2);
// Clean up.
clean(x1);
clean(y1);
clean(z1);
clean(x2);
clean(y2);
clean(z2);
}
/**
* \brief Adds two affine points.
*
* \param x1 The X value for the first point to add, and the result.
* \param y1 The Y value for the first point to add, and the result.
* \param x2 The X value for the second point to add.
* \param y2 The Y value for the second point to add.
*
* The Z values for the two points are assumed to be 1.
*/
void P521::addAffine(limb_t *x1, limb_t *y1, const limb_t *x2, const limb_t *y2)
{
limb_t xout[NUM_LIMBS_521BIT];
limb_t yout[NUM_LIMBS_521BIT];
limb_t zout[NUM_LIMBS_521BIT];
limb_t z1[NUM_LIMBS_521BIT];
// z1 = 1
z1[0] = 1;
memset(z1 + 1, 0, (NUM_LIMBS_521BIT - 1) * sizeof(limb_t));
// Add the two points.
addPoint(xout, yout, zout, x1, y1, z1, x2, y2/*, z2*/);
// Convert from Jacobian co-ordinates back into affine co-ordinates.
// x1 = xout * (zout^2)^-1, y1 = yout * (zout^3)^-1.
recip(z1, zout);
square(zout, z1);
mul(x1, xout, zout);
mul(zout, zout, z1);
mul(y1, yout, zout);
// Clean up.
clean(xout);
clean(yout);
clean(zout);
clean(z1);
}
/**
* \brief Validates that (x, y) is actually a point on the curve.
*
* \param x The X co-ordinate of the point to test.
* \param y The Y co-ordinate of the point to test.
* \return Returns true if (x, y) is on the curve, or false if not.
*
* \sa inRange()
*/
bool P521::validate(const limb_t *x, const limb_t *y)
{
bool result;
// If x or y is greater than or equal to 2^521 - 1, then the
// point is definitely not on the curve. Preserve timing by
// delaying the reporting of the result until later.
result = inRange(x);
result &= inRange(y);
// We need to check that y^2 = x^3 - 3 * x + b mod 2^521 - 1.
limb_t t1[NUM_LIMBS_521BIT];
limb_t t2[NUM_LIMBS_521BIT];
square(t1, x);
mul(t1, t1, x);
mulLiteral(t2, x, 3);
sub(t1, t1, t2);
memcpy_P(t2, P521_b, sizeof(t2));
add(t1, t1, t2);
square(t2, y);
result &= secure_compare(t1, t2, sizeof(t1));
clean(t1);
clean(t2);
return result;
}
/**
* \brief Determines if a value is between 0 and 2^521 - 2.
*
* \param x The value to test.
* \return Returns true if \a x is in range, false if not.
*
* \sa validate()
*/
bool P521::inRange(const limb_t *x)
{
// Do a trial subtraction of 2^521 - 1 from x, which is equivalent
// to adding 1 and subtracting 2^521. We only need the carry.
dlimb_t carry = 1;
limb_t word = 0;
for (uint8_t index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry += *x++;
word = (limb_t)carry;
carry >>= LIMB_BITS;
}
// Determine the carry out from the low 521 bits.
#if BIGNUMBER_LIMB_8BIT
carry = (carry << 7) + (word >> 1);
#else
carry = (carry << (LIMB_BITS - 9)) + (word >> 9);
#endif
// If the carry is zero, then x was in range. Otherwise it is out
// of range. Check for zero in a way that preserves constant timing.
word = (limb_t)(carry | (carry >> LIMB_BITS));
word = (limb_t)(((((dlimb_t)1) << LIMB_BITS) - word) >> LIMB_BITS);
return (bool)word;
}
/**
* \brief Reduces a number modulo 2^521 - 1.
*
* \param result The array that will contain the result when the
* function exits. Must be NUM_LIMBS_521BIT limbs in size.
* \param x The number to be reduced, which must be NUM_LIMBS_1042BIT
* limbs in size and less than square(2^521 - 1). This array can be
* the same as \a result.
*/
void P521::reduce(limb_t *result, const limb_t *x)
{
#if BIGNUMBER_LIMB_16BIT || BIGNUMBER_LIMB_32BIT || BIGNUMBER_LIMB_64BIT
// According to NIST FIPS 186-4, we add the high 521 bits to the
// low 521 bits and then do a trial subtraction of 2^521 - 1.
// We do both in a single step. Subtracting 2^521 - 1 is equivalent
// to adding 1 and subtracting 2^521.
uint8_t index;
const limb_t *xl = x;
const limb_t *xh = x + NUM_LIMBS_521BIT;
limb_t *rr = result;
dlimb_t carry;
limb_t word = x[NUM_LIMBS_521BIT - 1];
carry = (word >> 9) + 1;
word &= 0x1FF;
for (index = 0; index < (NUM_LIMBS_521BIT - 1); ++index) {
carry += *xl++;
carry += ((dlimb_t)(*xh++)) << (LIMB_BITS - 9);
*rr++ = (limb_t)carry;
carry >>= LIMB_BITS;
}
carry += word;
carry += ((dlimb_t)(x[NUM_LIMBS_1042BIT - 1])) << (LIMB_BITS - 9);
word = (limb_t)carry;
*rr = word;
// If the carry out was 1, then mask it off and we have the answer.
// If the carry out was 0, then we need to add 2^521 - 1 back again.
// To preserve the timing we perform a conditional subtract of 1 and
// then mask off the high bits.
carry = ((word >> 9) ^ 0x01) & 0x01;
rr = result;
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry = ((dlimb_t)(*rr)) - carry;
*rr++ = (limb_t)carry;
carry = (carry >> LIMB_BITS) & 0x01;
}
*(--rr) &= 0x1FF;
#elif BIGNUMBER_LIMB_8BIT
// Same as above, but for 8-bit limbs.
uint8_t index;
const limb_t *xl = x;
const limb_t *xh = x + NUM_LIMBS_521BIT;
limb_t *rr = result;
dlimb_t carry;
limb_t word = x[NUM_LIMBS_521BIT - 1];
carry = (word >> 1) + 1;
word &= 0x01;
for (index = 0; index < (NUM_LIMBS_521BIT - 1); ++index) {
carry += *xl++;
carry += ((dlimb_t)(*xh++)) << 7;
*rr++ = (limb_t)carry;
carry >>= LIMB_BITS;
}
carry += word;
carry += ((dlimb_t)(x[NUM_LIMBS_1042BIT - 1])) << 1;
word = (limb_t)carry;
*rr = word;
carry = ((word >> 1) ^ 0x01) & 0x01;
rr = result;
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry = ((dlimb_t)(*rr)) - carry;
*rr++ = (limb_t)carry;
carry = (carry >> LIMB_BITS) & 0x01;
}
*(--rr) &= 0x01;
#else
#error "Don't know how to reduce values mod 2^521 - 1"
#endif
}
/**
* \brief Quickly reduces a number modulo 2^521 - 1.
*
* \param x The number to be reduced, which must be NUM_LIMBS_521BIT
* limbs in size and less than or equal to 2 * (2^521 - 2).
*
* The answer is also put into \a x and will consist of NUM_LIMBS_521BIT limbs.
*
* This function is intended for reducing the result of additions where
* the caller knows that \a x is within the described range. A single
* trial subtraction is all that is needed to reduce the number.
*/
void P521::reduceQuick(limb_t *x)
{
// Perform a trial subtraction of 2^521 - 1 from x. This is
// equivalent to adding 1 and subtracting 2^521 - 1.
uint8_t index;
limb_t *xx = x;
dlimb_t carry = 1;
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry += *xx;
*xx++ = (limb_t)carry;
carry >>= LIMB_BITS;
}
// If the carry out was 1, then mask it off and we have the answer.
// If the carry out was 0, then we need to add 2^521 - 1 back again.
// To preserve the timing we perform a conditional subtract of 1 and
// then mask off the high bits.
#if BIGNUMBER_LIMB_16BIT || BIGNUMBER_LIMB_32BIT || BIGNUMBER_LIMB_64BIT
carry = ((x[NUM_LIMBS_521BIT - 1] >> 9) ^ 0x01) & 0x01;
xx = x;
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry = ((dlimb_t)(*xx)) - carry;
*xx++ = (limb_t)carry;
carry = (carry >> LIMB_BITS) & 0x01;
}
*(--xx) &= 0x1FF;
#elif BIGNUMBER_LIMB_8BIT
carry = ((x[NUM_LIMBS_521BIT - 1] >> 1) ^ 0x01) & 0x01;
xx = x;
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {
carry = ((dlimb_t)(*xx)) - carry;
*xx++ = (limb_t)carry;
carry = (carry >> LIMB_BITS) & 0x01;
}
*(--xx) &= 0x01;
#endif
}
/**
* \brief Multiplies two 521-bit values to produce a 1042-bit result.
*
* \param result The result, which must be NUM_LIMBS_1042BIT limbs in size
* and must not overlap with \a x or \a y.
* \param x The first value to multiply, which must be NUM_LIMBS_521BIT
* limbs in size.
* \param y The second value to multiply, which must be NUM_LIMBS_521BIT
* limbs in size.
*
* \sa mul()
*/
void P521::mulNoReduce(limb_t *result, const limb_t *x, const limb_t *y)
{
uint8_t i, j;
dlimb_t carry;
limb_t word;
const limb_t *yy;
limb_t *rr;
// Multiply the lowest word of x by y.
carry = 0;
word = x[0];
yy = y;
rr = result;
for (i = 0; i < NUM_LIMBS_521BIT; ++i) {
carry += ((dlimb_t)(*yy++)) * word;
*rr++ = (limb_t)carry;
carry >>= LIMB_BITS;
}
*rr = (limb_t)carry;
// Multiply and add the remaining words of x by y.
for (i = 1; i < NUM_LIMBS_521BIT; ++i) {
word = x[i];
carry = 0;
yy = y;
rr = result + i;
for (j = 0; j < NUM_LIMBS_521BIT; ++j) {
carry += ((dlimb_t)(*yy++)) * word;
carry += *rr;
*rr++ = (limb_t)carry;
carry >>= LIMB_BITS;
}
*rr = (limb_t)carry;
}
}
/**
* \brief Multiplies two values and then reduces the result modulo 2^521 - 1.
*
* \param result The result, which must be NUM_LIMBS_521BIT limbs in size
* and can be the same array as \a x or \a y.
* \param x The first value to multiply, which must be NUM_LIMBS_521BIT limbs
* in size and less than 2^521 - 1.
* \param y The second value to multiply, which must be NUM_LIMBS_521BIT limbs
* in size and less than 2^521 - 1. This can be the same array as \a x.
*/
void P521::mul(limb_t *result, const limb_t *x, const limb_t *y)
{
limb_t temp[NUM_LIMBS_1042BIT];
mulNoReduce(temp, x, y);
reduce(result, temp);
strict_clean(temp);
crypto_feed_watchdog();
}
/**
* \fn void P521::square(limb_t *result, const limb_t *x)
* \brief Squares a value and then reduces it modulo 2^521 - 1.
*
* \param result The result, which must be NUM_LIMBS_521BIT limbs in size and
* can be the same array as \a x.
* \param x The value to square, which must be NUM_LIMBS_521BIT limbs in size
* and less than 2^521 - 1.
*/
/**
* \brief Multiply a value by a single-limb literal modulo 2^521 - 1.
*
* \param result The result, which must be NUM_LIMBS_521BIT limbs in size and
* can be the same array as \a x.
* \param x The first value to multiply, which must be NUM_LIMBS_521BIT limbs
* in size and less than 2^521 - 1.
* \param y The second value to multiply, which must be less than 128.
*/
void P521::mulLiteral(limb_t *result, const limb_t *x, limb_t y)
{
uint8_t index;
dlimb_t carry = 0;
const limb_t *xx = x;
limb_t *rr = result;
// Multiply x by the literal and put it into the result array.
// We assume that y is small enough that overflow from the
// highest limb will not occur during this process.
for (index = 0; index < NUM_LIMBS_521BIT; ++index) {