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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
|
Internet Research Task Force (IRTF) A. Langley
Request for Comments: 7748 Google
Category: Informational M. Hamburg
ISSN: 2070-1721 Rambus Cryptography Research
S. Turner
sn3rd
January 2016
Elliptic Curves for Security
Abstract
This memo specifies two elliptic curves over prime fields that offer
a high level of practical security in cryptographic applications,
including Transport Layer Security (TLS). These curves are intended
to operate at the ~128-bit and ~224-bit security level, respectively,
and are generated deterministically based on a list of required
properties.
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for informational purposes.
This document is a product of the Internet Research Task Force
(IRTF). The IRTF publishes the results of Internet-related research
and development activities. These results might not be suitable for
deployment. This RFC represents the consensus of the Crypto Forum
Research Group of the Internet Research Task Force (IRTF). Documents
approved for publication by the IRSG are not a candidate for any
level of Internet Standard; see Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc7748.
Copyright Notice
Copyright (c) 2016 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document.
Langley, et al. Informational [Page 1]
^L
RFC 7748 Elliptic Curves for Security January 2016
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
2. Requirements Language . . . . . . . . . . . . . . . . . . . . 3
3. Notation . . . . . . . . . . . . . . . . . . . . . . . . . . 3
4. Recommended Curves . . . . . . . . . . . . . . . . . . . . . 4
4.1. Curve25519 . . . . . . . . . . . . . . . . . . . . . . . 4
4.2. Curve448 . . . . . . . . . . . . . . . . . . . . . . . . 5
5. The X25519 and X448 Functions . . . . . . . . . . . . . . . . 7
5.1. Side-Channel Considerations . . . . . . . . . . . . . . . 10
5.2. Test Vectors . . . . . . . . . . . . . . . . . . . . . . 11
6. Diffie-Hellman . . . . . . . . . . . . . . . . . . . . . . . 14
6.1. Curve25519 . . . . . . . . . . . . . . . . . . . . . . . 14
6.2. Curve448 . . . . . . . . . . . . . . . . . . . . . . . . 15
7. Security Considerations . . . . . . . . . . . . . . . . . . . 15
8. References . . . . . . . . . . . . . . . . . . . . . . . . . 16
8.1. Normative References . . . . . . . . . . . . . . . . . . 16
8.2. Informative References . . . . . . . . . . . . . . . . . 17
Appendix A. Deterministic Generation . . . . . . . . . . . . . . 19
A.1. p = 1 mod 4 . . . . . . . . . . . . . . . . . . . . . . . 20
A.2. p = 3 mod 4 . . . . . . . . . . . . . . . . . . . . . . . 21
A.3. Base Points . . . . . . . . . . . . . . . . . . . . . . . 21
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . 22
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . 22
1. Introduction
Since the initial standardization of Elliptic Curve Cryptography (ECC
[RFC6090]) in [SEC1], there has been significant progress related to
both efficiency and security of curves and implementations. Notable
examples are algorithms protected against certain side-channel
attacks, various "special" prime shapes that allow faster modular
arithmetic, and a larger set of curve models from which to choose.
There is also concern in the community regarding the generation and
potential weaknesses of the curves defined by NIST [NIST].
This memo specifies two elliptic curves ("curve25519" and "curve448")
that lend themselves to constant-time implementation and an
exception-free scalar multiplication that is resistant to a wide
range of side-channel attacks, including timing and cache attacks.
They are Montgomery curves (where v^2 = u^3 + A*u^2 + u) and thus
have birationally equivalent Edwards versions. Edwards curves
support the fastest (currently known) complete formulas for the
elliptic-curve group operations, specifically the Edwards curve
x^2 + y^2 = 1 + d*x^2*y^2 for primes p when p = 3 mod 4, and the
twisted Edwards curve -x^2 + y^2 = 1 + d*x^2*y^2 when p = 1 mod 4.
The maps to/from the Montgomery curves to their (twisted) Edwards
equivalents are also given.
Langley, et al. Informational [Page 2]
^L
RFC 7748 Elliptic Curves for Security January 2016
This memo also specifies how these curves can be used with the
Diffie-Hellman protocol for key agreement.
2. Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
3. Notation
Throughout this document, the following notation is used:
p Denotes the prime number defining the underlying field.
GF(p) The finite field with p elements.
A An element in the finite field GF(p), not equal to -2 or 2.
d A non-zero element in the finite field GF(p), not equal to
1, in the case of an Edwards curve, or not equal to -1, in
the case of a twisted Edwards curve.
order The order of the prime-order subgroup.
P A generator point defined over GF(p) of prime order.
U(P) The u-coordinate of the elliptic curve point P on a
Montgomery curve.
V(P) The v-coordinate of the elliptic curve point P on a
Montgomery curve.
X(P) The x-coordinate of the elliptic curve point P on a
(twisted) Edwards curve.
Y(P) The y-coordinate of the elliptic curve point P on a
(twisted) Edwards curve.
u, v Coordinates on a Montgomery curve.
x, y Coordinates on a (twisted) Edwards curve.
Langley, et al. Informational [Page 3]
^L
RFC 7748 Elliptic Curves for Security January 2016
4. Recommended Curves
4.1. Curve25519
For the ~128-bit security level, the prime 2^255 - 19 is recommended
for performance on a wide range of architectures. Few primes of the
form 2^c-s with s small exist between 2^250 and 2^521, and other
choices of coefficient are not as competitive in performance. This
prime is congruent to 1 mod 4, and the derivation procedure in
Appendix A results in the following Montgomery curve
v^2 = u^3 + A*u^2 + u, called "curve25519":
p 2^255 - 19
A 486662
order 2^252 + 0x14def9dea2f79cd65812631a5cf5d3ed
cofactor 8
U(P) 9
V(P) 147816194475895447910205935684099868872646061346164752889648818
37755586237401
The base point is u = 9, v = 1478161944758954479102059356840998688726
4606134616475288964881837755586237401.
This curve is birationally equivalent to a twisted Edwards curve -x^2
+ y^2 = 1 + d*x^2*y^2, called "edwards25519", where:
p 2^255 - 19
d 370957059346694393431380835087545651895421138798432190163887855330
85940283555
order 2^252 + 0x14def9dea2f79cd65812631a5cf5d3ed
cofactor 8
X(P) 151122213495354007725011514095885315114540126930418572060461132
83949847762202
Y(P) 463168356949264781694283940034751631413079938662562256157830336
03165251855960
Langley, et al. Informational [Page 4]
^L
RFC 7748 Elliptic Curves for Security January 2016
The birational maps are:
(u, v) = ((1+y)/(1-y), sqrt(-486664)*u/x)
(x, y) = (sqrt(-486664)*u/v, (u-1)/(u+1))
The Montgomery curve defined here is equal to the one defined in
[curve25519], and the equivalent twisted Edwards curve is equal to
the one defined in [ed25519].
4.2. Curve448
For the ~224-bit security level, the prime 2^448 - 2^224 - 1 is
recommended for performance on a wide range of architectures. This
prime is congruent to 3 mod 4, and the derivation procedure in
Appendix A results in the following Montgomery curve, called
"curve448":
p 2^448 - 2^224 - 1
A 156326
order 2^446 -
0x8335dc163bb124b65129c96fde933d8d723a70aadc873d6d54a7bb0d
cofactor 4
U(P) 5
V(P) 355293926785568175264127502063783334808976399387714271831880898
435169088786967410002932673765864550910142774147268105838985595290
606362
This curve is birationally equivalent to the Edwards curve x^2 + y^2
= 1 + d*x^2*y^2 where:
p 2^448 - 2^224 - 1
d 611975850744529176160423220965553317543219696871016626328968936415
087860042636474891785599283666020414768678979989378147065462815545
017
order 2^446 -
0x8335dc163bb124b65129c96fde933d8d723a70aadc873d6d54a7bb0d
cofactor 4
Langley, et al. Informational [Page 5]
^L
RFC 7748 Elliptic Curves for Security January 2016
X(P) 345397493039729516374008604150537410266655260075183290216406970
281645695073672344430481787759340633221708391583424041788924124567
700732
Y(P) 363419362147803445274661903944002267176820680343659030140745099
590306164083365386343198191849338272965044442230921818680526749009
182718
The birational maps are:
(u, v) = ((y-1)/(y+1), sqrt(156324)*u/x)
(x, y) = (sqrt(156324)*u/v, (1+u)/(1-u))
Both of those curves are also 4-isogenous to the following Edwards
curve x^2 + y^2 = 1 + d*x^2*y^2, called "edwards448", where:
p 2^448 - 2^224 - 1
d -39081
order 2^446 -
0x8335dc163bb124b65129c96fde933d8d723a70aadc873d6d54a7bb0d
cofactor 4
X(P) 224580040295924300187604334099896036246789641632564134246125461
686950415467406032909029192869357953282578032075146446173674602635
247710
Y(P) 298819210078481492676017930443930673437544040154080242095928241
372331506189835876003536878655418784733982303233503462500531545062
832660
The 4-isogeny maps between the Montgomery curve and this Edwards
curve are:
(u, v) = (y^2/x^2, (2 - x^2 - y^2)*y/x^3)
(x, y) = (4*v*(u^2 - 1)/(u^4 - 2*u^2 + 4*v^2 + 1),
-(u^5 - 2*u^3 - 4*u*v^2 + u)/
(u^5 - 2*u^2*v^2 - 2*u^3 - 2*v^2 + u))
The curve edwards448 defined here is also called "Goldilocks" and is
equal to the one defined in [goldilocks].
Langley, et al. Informational [Page 6]
^L
RFC 7748 Elliptic Curves for Security January 2016
5. The X25519 and X448 Functions
The "X25519" and "X448" functions perform scalar multiplication on
the Montgomery form of the above curves. (This is used when
implementing Diffie-Hellman.) The functions take a scalar and a
u-coordinate as inputs and produce a u-coordinate as output.
Although the functions work internally with integers, the inputs and
outputs are 32-byte strings (for X25519) or 56-byte strings (for
X448) and this specification defines their encoding.
The u-coordinates are elements of the underlying field GF(2^255 - 19)
or GF(2^448 - 2^224 - 1) and are encoded as an array of bytes, u, in
little-endian order such that u[0] + 256*u[1] + 256^2*u[2] + ... +
256^(n-1)*u[n-1] is congruent to the value modulo p and u[n-1] is
minimal. When receiving such an array, implementations of X25519
(but not X448) MUST mask the most significant bit in the final byte.
This is done to preserve compatibility with point formats that
reserve the sign bit for use in other protocols and to increase
resistance to implementation fingerprinting.
Implementations MUST accept non-canonical values and process them as
if they had been reduced modulo the field prime. The non-canonical
values are 2^255 - 19 through 2^255 - 1 for X25519 and 2^448 - 2^224
- 1 through 2^448 - 1 for X448.
The following functions implement this in Python, although the Python
code is not intended to be performant nor side-channel free. Here,
the "bits" parameter should be set to 255 for X25519 and 448 for
X448:
<CODE BEGINS>
def decodeLittleEndian(b, bits):
return sum([b[i] << 8*i for i in range((bits+7)/8)])
def decodeUCoordinate(u, bits):
u_list = [ord(b) for b in u]
# Ignore any unused bits.
if bits % 8:
u_list[-1] &= (1<<(bits%8))-1
return decodeLittleEndian(u_list, bits)
def encodeUCoordinate(u, bits):
u = u % p
return ''.join([chr((u >> 8*i) & 0xff)
for i in range((bits+7)/8)])
<CODE ENDS>
Langley, et al. Informational [Page 7]
^L
RFC 7748 Elliptic Curves for Security January 2016
Scalars are assumed to be randomly generated bytes. For X25519, in
order to decode 32 random bytes as an integer scalar, set the three
least significant bits of the first byte and the most significant bit
of the last to zero, set the second most significant bit of the last
byte to 1 and, finally, decode as little-endian. This means that the
resulting integer is of the form 2^254 plus eight times a value
between 0 and 2^251 - 1 (inclusive). Likewise, for X448, set the two
least significant bits of the first byte to 0, and the most
significant bit of the last byte to 1. This means that the resulting
integer is of the form 2^447 plus four times a value between 0 and
2^445 - 1 (inclusive).
<CODE BEGINS>
def decodeScalar25519(k):
k_list = [ord(b) for b in k]
k_list[0] &= 248
k_list[31] &= 127
k_list[31] |= 64
return decodeLittleEndian(k_list, 255)
def decodeScalar448(k):
k_list = [ord(b) for b in k]
k_list[0] &= 252
k_list[55] |= 128
return decodeLittleEndian(k_list, 448)
<CODE ENDS>
To implement the X25519(k, u) and X448(k, u) functions (where k is
the scalar and u is the u-coordinate), first decode k and u and then
perform the following procedure, which is taken from [curve25519] and
based on formulas from [montgomery]. All calculations are performed
in GF(p), i.e., they are performed modulo p. The constant a24 is
(486662 - 2) / 4 = 121665 for curve25519/X25519 and (156326 - 2) / 4
= 39081 for curve448/X448.
Langley, et al. Informational [Page 8]
^L
RFC 7748 Elliptic Curves for Security January 2016
x_1 = u
x_2 = 1
z_2 = 0
x_3 = u
z_3 = 1
swap = 0
For t = bits-1 down to 0:
k_t = (k >> t) & 1
swap ^= k_t
// Conditional swap; see text below.
(x_2, x_3) = cswap(swap, x_2, x_3)
(z_2, z_3) = cswap(swap, z_2, z_3)
swap = k_t
A = x_2 + z_2
AA = A^2
B = x_2 - z_2
BB = B^2
E = AA - BB
C = x_3 + z_3
D = x_3 - z_3
DA = D * A
CB = C * B
x_3 = (DA + CB)^2
z_3 = x_1 * (DA - CB)^2
x_2 = AA * BB
z_2 = E * (AA + a24 * E)
// Conditional swap; see text below.
(x_2, x_3) = cswap(swap, x_2, x_3)
(z_2, z_3) = cswap(swap, z_2, z_3)
Return x_2 * (z_2^(p - 2))
(Note that these formulas are slightly different from Montgomery's
original paper. Implementations are free to use any correct
formulas.)
Finally, encode the resulting value as 32 or 56 bytes in little-
endian order. For X25519, the unused, most significant bit MUST be
zero.
Langley, et al. Informational [Page 9]
^L
RFC 7748 Elliptic Curves for Security January 2016
The cswap function SHOULD be implemented in constant time (i.e.,
independent of the swap argument). For example, this can be done as
follows:
cswap(swap, x_2, x_3):
dummy = mask(swap) AND (x_2 XOR x_3)
x_2 = x_2 XOR dummy
x_3 = x_3 XOR dummy
Return (x_2, x_3)
Where mask(swap) is the all-1 or all-0 word of the same length as x_2
and x_3, computed, e.g., as mask(swap) = 0 - swap.
5.1. Side-Channel Considerations
X25519 and X448 are designed so that fast, constant-time
implementations are easier to produce. The procedure above ensures
that the same sequence of field operations is performed for all
values of the secret key, thus eliminating a common source of side-
channel leakage. However, this alone does not prevent all side-
channels by itself. It is important that the pattern of memory
accesses and jumps not depend on the values of any of the bits of k.
It is also important that the arithmetic used not leak information
about the integers modulo p, for example by having b*c be
distinguishable from c*c. On some architectures, even primitive
machine instructions, such as single-word division, can have variable
timing based on their inputs.
Side-channel attacks are an active research area that still sees
significant, new results. Implementors are advised to follow this
research closely.
Langley, et al. Informational [Page 10]
^L
RFC 7748 Elliptic Curves for Security January 2016
5.2. Test Vectors
Two types of tests are provided. The first is a pair of test vectors
for each function that consist of expected outputs for the given
inputs. The inputs are generally given as 64 or 112 hexadecimal
digits that need to be decoded as 32 or 56 binary bytes before
processing.
X25519:
Input scalar:
a546e36bf0527c9d3b16154b82465edd62144c0ac1fc5a18506a2244ba449ac4
Input scalar as a number (base 10):
31029842492115040904895560451863089656
472772604678260265531221036453811406496
Input u-coordinate:
e6db6867583030db3594c1a424b15f7c726624ec26b3353b10a903a6d0ab1c4c
Input u-coordinate as a number (base 10):
34426434033919594451155107781188821651
316167215306631574996226621102155684838
Output u-coordinate:
c3da55379de9c6908e94ea4df28d084f32eccf03491c71f754b4075577a28552
Input scalar:
4b66e9d4d1b4673c5ad22691957d6af5c11b6421e0ea01d42ca4169e7918ba0d
Input scalar as a number (base 10):
35156891815674817266734212754503633747
128614016119564763269015315466259359304
Input u-coordinate:
e5210f12786811d3f4b7959d0538ae2c31dbe7106fc03c3efc4cd549c715a493
Input u-coordinate as a number (base 10):
88838573511839298940907593866106493194
17338800022198945255395922347792736741
Output u-coordinate:
95cbde9476e8907d7aade45cb4b873f88b595a68799fa152e6f8f7647aac7957
Langley, et al. Informational [Page 11]
^L
RFC 7748 Elliptic Curves for Security January 2016
X448:
Input scalar:
3d262fddf9ec8e88495266fea19a34d28882acef045104d0d1aae121
700a779c984c24f8cdd78fbff44943eba368f54b29259a4f1c600ad3
Input scalar as a number (base 10):
599189175373896402783756016145213256157230856
085026129926891459468622403380588640249457727
683869421921443004045221642549886377526240828
Input u-coordinate:
06fce640fa3487bfda5f6cf2d5263f8aad88334cbd07437f020f08f9
814dc031ddbdc38c19c6da2583fa5429db94ada18aa7a7fb4ef8a086
Input u-coordinate as a number (base 10):
382239910814107330116229961234899377031416365
240571325148346555922438025162094455820962429
142971339584360034337310079791515452463053830
Output u-coordinate:
ce3e4ff95a60dc6697da1db1d85e6afbdf79b50a2412d7546d5f239f
e14fbaadeb445fc66a01b0779d98223961111e21766282f73dd96b6f
Input scalar:
203d494428b8399352665ddca42f9de8fef600908e0d461cb021f8c5
38345dd77c3e4806e25f46d3315c44e0a5b4371282dd2c8d5be3095f
Input scalar as a number (base 10):
633254335906970592779259481534862372382525155
252028961056404001332122152890562527156973881
968934311400345568203929409663925541994577184
Input u-coordinate:
0fbcc2f993cd56d3305b0b7d9e55d4c1a8fb5dbb52f8e9a1e9b6201b
165d015894e56c4d3570bee52fe205e28a78b91cdfbde71ce8d157db
Input u-coordinate as a number (base 10):
622761797758325444462922068431234180649590390
024811299761625153767228042600197997696167956
134770744996690267634159427999832340166786063
Output u-coordinate:
884a02576239ff7a2f2f63b2db6a9ff37047ac13568e1e30fe63c4a7
ad1b3ee3a5700df34321d62077e63633c575c1c954514e99da7c179d
Langley, et al. Informational [Page 12]
^L
RFC 7748 Elliptic Curves for Security January 2016
The second type of test vector consists of the result of calling the
function in question a specified number of times. Initially, set k
and u to be the following values:
For X25519:
0900000000000000000000000000000000000000000000000000000000000000
For X448:
05000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000
For each iteration, set k to be the result of calling the function
and u to be the old value of k. The final result is the value left
in k.
X25519:
After one iteration:
422c8e7a6227d7bca1350b3e2bb7279f7897b87bb6854b783c60e80311ae3079
After 1,000 iterations:
684cf59ba83309552800ef566f2f4d3c1c3887c49360e3875f2eb94d99532c51
After 1,000,000 iterations:
7c3911e0ab2586fd864497297e575e6f3bc601c0883c30df5f4dd2d24f665424
X448:
After one iteration:
3f482c8a9f19b01e6c46ee9711d9dc14fd4bf67af30765c2ae2b846a
4d23a8cd0db897086239492caf350b51f833868b9bc2b3bca9cf4113
After 1,000 iterations:
aa3b4749d55b9daf1e5b00288826c467274ce3ebbdd5c17b975e09d4
af6c67cf10d087202db88286e2b79fceea3ec353ef54faa26e219f38
After 1,000,000 iterations:
077f453681caca3693198420bbe515cae0002472519b3e67661a7e89
cab94695c8f4bcd66e61b9b9c946da8d524de3d69bd9d9d66b997e37
Langley, et al. Informational [Page 13]
^L
RFC 7748 Elliptic Curves for Security January 2016
6. Diffie-Hellman
6.1. Curve25519
The X25519 function can be used in an Elliptic Curve Diffie-Hellman
(ECDH) protocol as follows:
Alice generates 32 random bytes in a[0] to a[31] and transmits K_A =
X25519(a, 9) to Bob, where 9 is the u-coordinate of the base point
and is encoded as a byte with value 9, followed by 31 zero bytes.
Bob similarly generates 32 random bytes in b[0] to b[31], computes
K_B = X25519(b, 9), and transmits it to Alice.
Using their generated values and the received input, Alice computes
X25519(a, K_B) and Bob computes X25519(b, K_A).
Both now share K = X25519(a, X25519(b, 9)) = X25519(b, X25519(a, 9))
as a shared secret. Both MAY check, without leaking extra
information about the value of K, whether K is the all-zero value and
abort if so (see below). Alice and Bob can then use a key-derivation
function that includes K, K_A, and K_B to derive a symmetric key.
The check for the all-zero value results from the fact that the
X25519 function produces that value if it operates on an input
corresponding to a point with small order, where the order divides
the cofactor of the curve (see Section 7). The check may be
performed by ORing all the bytes together and checking whether the
result is zero, as this eliminates standard side-channels in software
implementations.
Test vector:
Alice's private key, a:
77076d0a7318a57d3c16c17251b26645df4c2f87ebc0992ab177fba51db92c2a
Alice's public key, X25519(a, 9):
8520f0098930a754748b7ddcb43ef75a0dbf3a0d26381af4eba4a98eaa9b4e6a
Bob's private key, b:
5dab087e624a8a4b79e17f8b83800ee66f3bb1292618b6fd1c2f8b27ff88e0eb
Bob's public key, X25519(b, 9):
de9edb7d7b7dc1b4d35b61c2ece435373f8343c85b78674dadfc7e146f882b4f
Their shared secret, K:
4a5d9d5ba4ce2de1728e3bf480350f25e07e21c947d19e3376f09b3c1e161742
Langley, et al. Informational [Page 14]
^L
RFC 7748 Elliptic Curves for Security January 2016
6.2. Curve448
The X448 function can be used in an ECDH protocol very much like the
X25519 function.
If X448 is to be used, the only differences are that Alice and Bob
generate 56 random bytes (not 32) and calculate K_A = X448(a, 5) or
K_B = X448(b, 5), where 5 is the u-coordinate of the base point and
is encoded as a byte with value 5, followed by 55 zero bytes.
As with X25519, both sides MAY check, without leaking extra
information about the value of K, whether the resulting shared K is
the all-zero value and abort if so.
Test vector:
Alice's private key, a:
9a8f4925d1519f5775cf46b04b5800d4ee9ee8bae8bc5565d498c28d
d9c9baf574a9419744897391006382a6f127ab1d9ac2d8c0a598726b
Alice's public key, X448(a, 5):
9b08f7cc31b7e3e67d22d5aea121074a273bd2b83de09c63faa73d2c
22c5d9bbc836647241d953d40c5b12da88120d53177f80e532c41fa0
Bob's private key, b:
1c306a7ac2a0e2e0990b294470cba339e6453772b075811d8fad0d1d
6927c120bb5ee8972b0d3e21374c9c921b09d1b0366f10b65173992d
Bob's public key, X448(b, 5):
3eb7a829b0cd20f5bcfc0b599b6feccf6da4627107bdb0d4f345b430
27d8b972fc3e34fb4232a13ca706dcb57aec3dae07bdc1c67bf33609
Their shared secret, K:
07fff4181ac6cc95ec1c16a94a0f74d12da232ce40a77552281d282b
b60c0b56fd2464c335543936521c24403085d59a449a5037514a879d
7. Security Considerations
The security level (i.e., the number of "operations" needed for a
brute-force attack on a primitive) of curve25519 is slightly under
the standard 128-bit level. This is acceptable because the standard
security levels are primarily driven by much simpler, symmetric
primitives where the security level naturally falls on a power of
two. For asymmetric primitives, rigidly adhering to a power-of-two
security level would require compromises in other parts of the
design, which we reject. Additionally, comparing security levels
between types of primitives can be misleading under common threat
models where multiple targets can be attacked concurrently
[bruteforce].
Langley, et al. Informational [Page 15]
^L
RFC 7748 Elliptic Curves for Security January 2016
The ~224-bit security level of curve448 is a trade-off between
performance and paranoia. Large quantum computers, if ever created,
will break both curve25519 and curve448, and reasonable projections
of the abilities of classical computers conclude that curve25519 is
perfectly safe. However, some designs have relaxed performance
requirements and wish to hedge against some amount of analytical
advance against elliptic curves and thus curve448 is also provided.
Protocol designers using Diffie-Hellman over the curves defined in
this document must not assume "contributory behaviour". Specially,
contributory behaviour means that both parties' private keys
contribute to the resulting shared key. Since curve25519 and
curve448 have cofactors of 8 and 4 (respectively), an input point of
small order will eliminate any contribution from the other party's
private key. This situation can be detected by checking for the all-
zero output, which implementations MAY do, as specified in Section 6.
However, a large number of existing implementations do not do this.
Designers using these curves should be aware that for each public
key, there are several publicly computable public keys that are
equivalent to it, i.e., they produce the same shared secrets. Thus
using a public key as an identifier and knowledge of a shared secret
as proof of ownership (without including the public keys in the key
derivation) might lead to subtle vulnerabilities.
Designers should also be aware that implementations of these curves
might not use the Montgomery ladder as specified in this document,
but could use generic, elliptic-curve libraries instead. These
implementations could reject points on the twist and could reject
non-minimal field elements. While not recommended, such
implementations will interoperate with the Montgomery ladder
specified here but may be trivially distinguishable from it. For
example, sending a non-canonical value or a point on the twist may
cause such implementations to produce an observable error while an
implementation that follows the design in this text would
successfully produce a shared key.
8. References
8.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<http://www.rfc-editor.org/info/rfc2119>.
Langley, et al. Informational [Page 16]
^L
RFC 7748 Elliptic Curves for Security January 2016
8.2. Informative References
[brainpool]
ECC Brainpool, "ECC Brainpool Standard Curves and Curve
Generation", October 2005,
<http://www.ecc-brainpool.org/download/
Domain-parameters.pdf>.
[bruteforce]
Bernstein, D., "Understanding brute force", April 2005,
<http://cr.yp.to/snuffle/bruteforce-20050425.pdf>.
[curve25519]
Bernstein, D., "Curve25519: new Diffie-Hellman speed
records", 2006,
<http://www.iacr.org/cryptodb/archive/2006/
PKC/3351/3351.pdf>.
[ed25519] Bernstein, D., Duif, N., Lange, T., Schwabe, P., and B.
Yang, "High-Speed High-Security Signatures", 2011,
<http://link.springer.com/
chapter/10.1007/978-3-642-23951-9_9>.
[goldilocks]
Hamburg, M., "Ed448-Goldilocks, a new elliptic curve",
2015, <http://eprint.iacr.org/2015/625.pdf>.
[montgomery]
Montgomery, P., "Speeding the Pollard and Elliptic Curve
Methods of Factorization", January 1987,
<http://www.ams.org/journals/mcom/1987-48-177/
S0025-5718-1987-0866113-7/S0025-5718-1987-0866113-7.pdf>.
[NIST] National Institute of Standards, "Recommended Elliptic
Curves for Federal Government Use", July 1999,
<http://csrc.nist.gov/groups/ST/toolkit/documents/dss/
NISTReCur.pdf>.
[reducing] Menezes, A., Okamoto, T., and S. Vanstone, "Reducing
elliptic curve logarithms to logarithms in a finite
field", DOI 10.1109/18.259647, 1993,
<http://ieeexplore.ieee.org/xpl/
articleDetails.jsp?arnumber=259647>.
[RFC6090] McGrew, D., Igoe, K., and M. Salter, "Fundamental Elliptic
Curve Cryptography Algorithms", RFC 6090,
DOI 10.17487/RFC6090, February 2011,
<http://www.rfc-editor.org/info/rfc6090>.
Langley, et al. Informational [Page 17]
^L
RFC 7748 Elliptic Curves for Security January 2016
[safecurves]
Bernstein, D. and T. Lange, "SafeCurves: choosing safe
curves for elliptic-curve cryptography", Oct 2013,
<http://safecurves.cr.yp.to/>.
[satoh] Satoh, T. and K. Araki, "Fermat quotients and the
polynomial time discrete log algorithm for anomalous
elliptic curves", 1998.
[SEC1] Certicom Research, "SEC 1: Elliptic Curve Cryptography",
September 2000, <http://www.secg.org/sec1-v2.pdf>.
[semaev] Semaev, I., "Evaluation of discrete logarithms on some
elliptic curves", 1998, <http://www.ams.org/journals/
mcom/1998-67-221/S0025-5718-98-00887-4/
S0025-5718-98-00887-4.pdf>.
[smart] Smart, N., "The Discrete Logarithm Problem on Elliptic
Curves of Trace One", 1999,
<http://www.hpl.hp.com/techreports/97/HPL-97-128.pdf>.
Langley, et al. Informational [Page 18]
^L
RFC 7748 Elliptic Curves for Security January 2016
Appendix A. Deterministic Generation
This section specifies the procedure that was used to generate the
above curves; specifically, it defines how to generate the parameter
A of the Montgomery curve y^2 = x^3 + A*x^2 + x. This procedure is
intended to be as objective as can reasonably be achieved so that
it's clear that no untoward considerations influenced the choice of
curve. The input to this process is p, the prime that defines the
underlying field. The size of p determines the amount of work needed
to compute a discrete logarithm in the elliptic curve group, and
choosing a precise p depends on many implementation concerns. The
performance of the curve will be dominated by operations in GF(p), so
carefully choosing a value that allows for easy reductions on the
intended architecture is critical. This document does not attempt to
articulate all these considerations.
The value (A-2)/4 is used in several of the elliptic curve point
arithmetic formulas. For simplicity and performance reasons, it is
beneficial to make this constant small, i.e., to choose A so that
(A-2) is a small integer that is divisible by four.
For each curve at a specific security level:
1. The trace of Frobenius MUST NOT be in {0, 1} in order to rule out
the attacks described in [smart], [satoh], and [semaev], as in
[brainpool] and [safecurves].
2. MOV Degree [reducing]: the embedding degree MUST be greater than
(order - 1) / 100, as in [brainpool] and [safecurves].
3. CM Discriminant: discriminant D MUST be greater than 2^100, as in
[safecurves].
Langley, et al. Informational [Page 19]
^L
RFC 7748 Elliptic Curves for Security January 2016
A.1. p = 1 mod 4
For primes congruent to 1 mod 4, the minimal cofactors of the curve
and its twist are either {4, 8} or {8, 4}. We choose a curve with
the latter cofactors so that any algorithms that take the cofactor
into account don't have to worry about checking for points on the
twist, because the twist cofactor will be the smaller of the two.
To generate the Montgomery curve, we find the minimal, positive A
value such that A > 2 and (A-2) is divisible by four and where the
cofactors are as desired. The find1Mod4 function in the following
Sage script returns this value given p:
<CODE BEGINS>
def findCurve(prime, curveCofactor, twistCofactor):
F = GF(prime)
for A in xrange(3, int(1e9)):
if (A-2) % 4 != 0:
continue
try:
E = EllipticCurve(F, [0, A, 0, 1, 0])
except:
continue
groupOrder = E.order()
twistOrder = 2*(prime+1)-groupOrder
if (groupOrder % curveCofactor == 0 and
is_prime(groupOrder // curveCofactor) and
twistOrder % twistCofactor == 0 and
is_prime(twistOrder // twistCofactor)):
return A
def find1Mod4(prime):
assert((prime % 4) == 1)
return findCurve(prime, 8, 4)
<CODE ENDS>
Generating a curve where p = 1 mod 4
Langley, et al. Informational [Page 20]
^L
RFC 7748 Elliptic Curves for Security January 2016
A.2. p = 3 mod 4
For a prime congruent to 3 mod 4, both the curve and twist cofactors
can be 4, and this is minimal. Thus, we choose the curve with these
cofactors and minimal, positive A such that A > 2 and (A-2) is
divisible by four. The find3Mod4 function in the following Sage
script returns this value given p:
<CODE BEGINS>
def find3Mod4(prime):
assert((prime % 4) == 3)
return findCurve(prime, 4, 4)
<CODE ENDS>
Generating a curve where p = 3 mod 4
A.3. Base Points
The base point for a curve is the point with minimal, positive u
value that is in the correct subgroup. The findBasepoint function in
the following Sage script returns this value given p and A:
<CODE BEGINS>
def findBasepoint(prime, A):
F = GF(prime)
E = EllipticCurve(F, [0, A, 0, 1, 0])
for uInt in range(1, 1e3):
u = F(uInt)
v2 = u^3 + A*u^2 + u
if not v2.is_square():
continue
v = v2.sqrt()
point = E(u, v)
pointOrder = point.order()
if pointOrder > 8 and pointOrder.is_prime():
return point
<CODE ENDS>
Generating the base point
Langley, et al. Informational [Page 21]
^L
RFC 7748 Elliptic Curves for Security January 2016
Acknowledgements
This document is the result of a combination of draft-black-rpgecc-01
and draft-turner-thecurve25519function-01. The following authors of
those documents wrote much of the text and figures but are not listed
as authors on this document: Benjamin Black, Joppe W. Bos, Craig
Costello, Patrick Longa, Michael Naehrig, Watson Ladd, and Rich Salz.
The authors would also like to thank Tanja Lange, Rene Struik, Rich
Salz, Ilari Liusvaara, Deirdre Connolly, Simon Josefsson, Stephen
Farrell, Georg Nestmann, Trevor Perrin, and John Mattsson for their
reviews and contributions.
The X25519 function was developed by Daniel J. Bernstein in
[curve25519].
Authors' Addresses
Adam Langley
Google
345 Spear Street
San Francisco, CA 94105
United States
Email: agl@google.com
Mike Hamburg
Rambus Cryptography Research
425 Market Street, 11th Floor
San Francisco, CA 94105
United States
Email: mike@shiftleft.org
Sean Turner
sn3rd
Email: sean@sn3rd.com
Langley, et al. Informational [Page 22]
^L
|