1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0 OR MIT
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
4*4882a593Smuzhiyun */
5*4882a593Smuzhiyun
6*4882a593Smuzhiyun #include <crypto/curve25519.h>
7*4882a593Smuzhiyun
8*4882a593Smuzhiyun struct curve25519_test_vector {
9*4882a593Smuzhiyun u8 private[CURVE25519_KEY_SIZE];
10*4882a593Smuzhiyun u8 public[CURVE25519_KEY_SIZE];
11*4882a593Smuzhiyun u8 result[CURVE25519_KEY_SIZE];
12*4882a593Smuzhiyun bool valid;
13*4882a593Smuzhiyun };
14*4882a593Smuzhiyun static const struct curve25519_test_vector curve25519_test_vectors[] __initconst = {
15*4882a593Smuzhiyun {
16*4882a593Smuzhiyun .private = { 0x77, 0x07, 0x6d, 0x0a, 0x73, 0x18, 0xa5, 0x7d,
17*4882a593Smuzhiyun 0x3c, 0x16, 0xc1, 0x72, 0x51, 0xb2, 0x66, 0x45,
18*4882a593Smuzhiyun 0xdf, 0x4c, 0x2f, 0x87, 0xeb, 0xc0, 0x99, 0x2a,
19*4882a593Smuzhiyun 0xb1, 0x77, 0xfb, 0xa5, 0x1d, 0xb9, 0x2c, 0x2a },
20*4882a593Smuzhiyun .public = { 0xde, 0x9e, 0xdb, 0x7d, 0x7b, 0x7d, 0xc1, 0xb4,
21*4882a593Smuzhiyun 0xd3, 0x5b, 0x61, 0xc2, 0xec, 0xe4, 0x35, 0x37,
22*4882a593Smuzhiyun 0x3f, 0x83, 0x43, 0xc8, 0x5b, 0x78, 0x67, 0x4d,
23*4882a593Smuzhiyun 0xad, 0xfc, 0x7e, 0x14, 0x6f, 0x88, 0x2b, 0x4f },
24*4882a593Smuzhiyun .result = { 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1,
25*4882a593Smuzhiyun 0x72, 0x8e, 0x3b, 0xf4, 0x80, 0x35, 0x0f, 0x25,
26*4882a593Smuzhiyun 0xe0, 0x7e, 0x21, 0xc9, 0x47, 0xd1, 0x9e, 0x33,
27*4882a593Smuzhiyun 0x76, 0xf0, 0x9b, 0x3c, 0x1e, 0x16, 0x17, 0x42 },
28*4882a593Smuzhiyun .valid = true
29*4882a593Smuzhiyun },
30*4882a593Smuzhiyun {
31*4882a593Smuzhiyun .private = { 0x5d, 0xab, 0x08, 0x7e, 0x62, 0x4a, 0x8a, 0x4b,
32*4882a593Smuzhiyun 0x79, 0xe1, 0x7f, 0x8b, 0x83, 0x80, 0x0e, 0xe6,
33*4882a593Smuzhiyun 0x6f, 0x3b, 0xb1, 0x29, 0x26, 0x18, 0xb6, 0xfd,
34*4882a593Smuzhiyun 0x1c, 0x2f, 0x8b, 0x27, 0xff, 0x88, 0xe0, 0xeb },
35*4882a593Smuzhiyun .public = { 0x85, 0x20, 0xf0, 0x09, 0x89, 0x30, 0xa7, 0x54,
36*4882a593Smuzhiyun 0x74, 0x8b, 0x7d, 0xdc, 0xb4, 0x3e, 0xf7, 0x5a,
37*4882a593Smuzhiyun 0x0d, 0xbf, 0x3a, 0x0d, 0x26, 0x38, 0x1a, 0xf4,
38*4882a593Smuzhiyun 0xeb, 0xa4, 0xa9, 0x8e, 0xaa, 0x9b, 0x4e, 0x6a },
39*4882a593Smuzhiyun .result = { 0x4a, 0x5d, 0x9d, 0x5b, 0xa4, 0xce, 0x2d, 0xe1,
40*4882a593Smuzhiyun 0x72, 0x8e, 0x3b, 0xf4, 0x80, 0x35, 0x0f, 0x25,
41*4882a593Smuzhiyun 0xe0, 0x7e, 0x21, 0xc9, 0x47, 0xd1, 0x9e, 0x33,
42*4882a593Smuzhiyun 0x76, 0xf0, 0x9b, 0x3c, 0x1e, 0x16, 0x17, 0x42 },
43*4882a593Smuzhiyun .valid = true
44*4882a593Smuzhiyun },
45*4882a593Smuzhiyun {
46*4882a593Smuzhiyun .private = { 1 },
47*4882a593Smuzhiyun .public = { 0x25, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
48*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
49*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
50*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
51*4882a593Smuzhiyun .result = { 0x3c, 0x77, 0x77, 0xca, 0xf9, 0x97, 0xb2, 0x64,
52*4882a593Smuzhiyun 0x41, 0x60, 0x77, 0x66, 0x5b, 0x4e, 0x22, 0x9d,
53*4882a593Smuzhiyun 0x0b, 0x95, 0x48, 0xdc, 0x0c, 0xd8, 0x19, 0x98,
54*4882a593Smuzhiyun 0xdd, 0xcd, 0xc5, 0xc8, 0x53, 0x3c, 0x79, 0x7f },
55*4882a593Smuzhiyun .valid = true
56*4882a593Smuzhiyun },
57*4882a593Smuzhiyun {
58*4882a593Smuzhiyun .private = { 1 },
59*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
60*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
61*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
62*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
63*4882a593Smuzhiyun .result = { 0xb3, 0x2d, 0x13, 0x62, 0xc2, 0x48, 0xd6, 0x2f,
64*4882a593Smuzhiyun 0xe6, 0x26, 0x19, 0xcf, 0xf0, 0x4d, 0xd4, 0x3d,
65*4882a593Smuzhiyun 0xb7, 0x3f, 0xfc, 0x1b, 0x63, 0x08, 0xed, 0xe3,
66*4882a593Smuzhiyun 0x0b, 0x78, 0xd8, 0x73, 0x80, 0xf1, 0xe8, 0x34 },
67*4882a593Smuzhiyun .valid = true
68*4882a593Smuzhiyun },
69*4882a593Smuzhiyun {
70*4882a593Smuzhiyun .private = { 0xa5, 0x46, 0xe3, 0x6b, 0xf0, 0x52, 0x7c, 0x9d,
71*4882a593Smuzhiyun 0x3b, 0x16, 0x15, 0x4b, 0x82, 0x46, 0x5e, 0xdd,
72*4882a593Smuzhiyun 0x62, 0x14, 0x4c, 0x0a, 0xc1, 0xfc, 0x5a, 0x18,
73*4882a593Smuzhiyun 0x50, 0x6a, 0x22, 0x44, 0xba, 0x44, 0x9a, 0xc4 },
74*4882a593Smuzhiyun .public = { 0xe6, 0xdb, 0x68, 0x67, 0x58, 0x30, 0x30, 0xdb,
75*4882a593Smuzhiyun 0x35, 0x94, 0xc1, 0xa4, 0x24, 0xb1, 0x5f, 0x7c,
76*4882a593Smuzhiyun 0x72, 0x66, 0x24, 0xec, 0x26, 0xb3, 0x35, 0x3b,
77*4882a593Smuzhiyun 0x10, 0xa9, 0x03, 0xa6, 0xd0, 0xab, 0x1c, 0x4c },
78*4882a593Smuzhiyun .result = { 0xc3, 0xda, 0x55, 0x37, 0x9d, 0xe9, 0xc6, 0x90,
79*4882a593Smuzhiyun 0x8e, 0x94, 0xea, 0x4d, 0xf2, 0x8d, 0x08, 0x4f,
80*4882a593Smuzhiyun 0x32, 0xec, 0xcf, 0x03, 0x49, 0x1c, 0x71, 0xf7,
81*4882a593Smuzhiyun 0x54, 0xb4, 0x07, 0x55, 0x77, 0xa2, 0x85, 0x52 },
82*4882a593Smuzhiyun .valid = true
83*4882a593Smuzhiyun },
84*4882a593Smuzhiyun {
85*4882a593Smuzhiyun .private = { 1, 2, 3, 4 },
86*4882a593Smuzhiyun .public = { 0 },
87*4882a593Smuzhiyun .result = { 0 },
88*4882a593Smuzhiyun .valid = false
89*4882a593Smuzhiyun },
90*4882a593Smuzhiyun {
91*4882a593Smuzhiyun .private = { 2, 4, 6, 8 },
92*4882a593Smuzhiyun .public = { 0xe0, 0xeb, 0x7a, 0x7c, 0x3b, 0x41, 0xb8, 0xae,
93*4882a593Smuzhiyun 0x16, 0x56, 0xe3, 0xfa, 0xf1, 0x9f, 0xc4, 0x6a,
94*4882a593Smuzhiyun 0xda, 0x09, 0x8d, 0xeb, 0x9c, 0x32, 0xb1, 0xfd,
95*4882a593Smuzhiyun 0x86, 0x62, 0x05, 0x16, 0x5f, 0x49, 0xb8 },
96*4882a593Smuzhiyun .result = { 0 },
97*4882a593Smuzhiyun .valid = false
98*4882a593Smuzhiyun },
99*4882a593Smuzhiyun {
100*4882a593Smuzhiyun .private = { 0xff, 0xff, 0xff, 0xff, 0x0a, 0xff, 0xff, 0xff,
101*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
102*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
103*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
104*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
105*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
106*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
107*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0x0a, 0x00, 0xfb, 0x9f },
108*4882a593Smuzhiyun .result = { 0x77, 0x52, 0xb6, 0x18, 0xc1, 0x2d, 0x48, 0xd2,
109*4882a593Smuzhiyun 0xc6, 0x93, 0x46, 0x83, 0x81, 0x7c, 0xc6, 0x57,
110*4882a593Smuzhiyun 0xf3, 0x31, 0x03, 0x19, 0x49, 0x48, 0x20, 0x05,
111*4882a593Smuzhiyun 0x42, 0x2b, 0x4e, 0xae, 0x8d, 0x1d, 0x43, 0x23 },
112*4882a593Smuzhiyun .valid = true
113*4882a593Smuzhiyun },
114*4882a593Smuzhiyun {
115*4882a593Smuzhiyun .private = { 0x8e, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
116*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
117*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
118*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
119*4882a593Smuzhiyun .public = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
120*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
121*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
122*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8e, 0x06 },
123*4882a593Smuzhiyun .result = { 0x5a, 0xdf, 0xaa, 0x25, 0x86, 0x8e, 0x32, 0x3d,
124*4882a593Smuzhiyun 0xae, 0x49, 0x62, 0xc1, 0x01, 0x5c, 0xb3, 0x12,
125*4882a593Smuzhiyun 0xe1, 0xc5, 0xc7, 0x9e, 0x95, 0x3f, 0x03, 0x99,
126*4882a593Smuzhiyun 0xb0, 0xba, 0x16, 0x22, 0xf3, 0xb6, 0xf7, 0x0c },
127*4882a593Smuzhiyun .valid = true
128*4882a593Smuzhiyun },
129*4882a593Smuzhiyun /* wycheproof - normal case */
130*4882a593Smuzhiyun {
131*4882a593Smuzhiyun .private = { 0x48, 0x52, 0x83, 0x4d, 0x9d, 0x6b, 0x77, 0xda,
132*4882a593Smuzhiyun 0xde, 0xab, 0xaa, 0xf2, 0xe1, 0x1d, 0xca, 0x66,
133*4882a593Smuzhiyun 0xd1, 0x9f, 0xe7, 0x49, 0x93, 0xa7, 0xbe, 0xc3,
134*4882a593Smuzhiyun 0x6c, 0x6e, 0x16, 0xa0, 0x98, 0x3f, 0xea, 0xba },
135*4882a593Smuzhiyun .public = { 0x9c, 0x64, 0x7d, 0x9a, 0xe5, 0x89, 0xb9, 0xf5,
136*4882a593Smuzhiyun 0x8f, 0xdc, 0x3c, 0xa4, 0x94, 0x7e, 0xfb, 0xc9,
137*4882a593Smuzhiyun 0x15, 0xc4, 0xb2, 0xe0, 0x8e, 0x74, 0x4a, 0x0e,
138*4882a593Smuzhiyun 0xdf, 0x46, 0x9d, 0xac, 0x59, 0xc8, 0xf8, 0x5a },
139*4882a593Smuzhiyun .result = { 0x87, 0xb7, 0xf2, 0x12, 0xb6, 0x27, 0xf7, 0xa5,
140*4882a593Smuzhiyun 0x4c, 0xa5, 0xe0, 0xbc, 0xda, 0xdd, 0xd5, 0x38,
141*4882a593Smuzhiyun 0x9d, 0x9d, 0xe6, 0x15, 0x6c, 0xdb, 0xcf, 0x8e,
142*4882a593Smuzhiyun 0xbe, 0x14, 0xff, 0xbc, 0xfb, 0x43, 0x65, 0x51 },
143*4882a593Smuzhiyun .valid = true
144*4882a593Smuzhiyun },
145*4882a593Smuzhiyun /* wycheproof - public key on twist */
146*4882a593Smuzhiyun {
147*4882a593Smuzhiyun .private = { 0x58, 0x8c, 0x06, 0x1a, 0x50, 0x80, 0x4a, 0xc4,
148*4882a593Smuzhiyun 0x88, 0xad, 0x77, 0x4a, 0xc7, 0x16, 0xc3, 0xf5,
149*4882a593Smuzhiyun 0xba, 0x71, 0x4b, 0x27, 0x12, 0xe0, 0x48, 0x49,
150*4882a593Smuzhiyun 0x13, 0x79, 0xa5, 0x00, 0x21, 0x19, 0x98, 0xa8 },
151*4882a593Smuzhiyun .public = { 0x63, 0xaa, 0x40, 0xc6, 0xe3, 0x83, 0x46, 0xc5,
152*4882a593Smuzhiyun 0xca, 0xf2, 0x3a, 0x6d, 0xf0, 0xa5, 0xe6, 0xc8,
153*4882a593Smuzhiyun 0x08, 0x89, 0xa0, 0x86, 0x47, 0xe5, 0x51, 0xb3,
154*4882a593Smuzhiyun 0x56, 0x34, 0x49, 0xbe, 0xfc, 0xfc, 0x97, 0x33 },
155*4882a593Smuzhiyun .result = { 0xb1, 0xa7, 0x07, 0x51, 0x94, 0x95, 0xff, 0xff,
156*4882a593Smuzhiyun 0xb2, 0x98, 0xff, 0x94, 0x17, 0x16, 0xb0, 0x6d,
157*4882a593Smuzhiyun 0xfa, 0xb8, 0x7c, 0xf8, 0xd9, 0x11, 0x23, 0xfe,
158*4882a593Smuzhiyun 0x2b, 0xe9, 0xa2, 0x33, 0xdd, 0xa2, 0x22, 0x12 },
159*4882a593Smuzhiyun .valid = true
160*4882a593Smuzhiyun },
161*4882a593Smuzhiyun /* wycheproof - public key on twist */
162*4882a593Smuzhiyun {
163*4882a593Smuzhiyun .private = { 0xb0, 0x5b, 0xfd, 0x32, 0xe5, 0x53, 0x25, 0xd9,
164*4882a593Smuzhiyun 0xfd, 0x64, 0x8c, 0xb3, 0x02, 0x84, 0x80, 0x39,
165*4882a593Smuzhiyun 0x00, 0x0b, 0x39, 0x0e, 0x44, 0xd5, 0x21, 0xe5,
166*4882a593Smuzhiyun 0x8a, 0xab, 0x3b, 0x29, 0xa6, 0x96, 0x0b, 0xa8 },
167*4882a593Smuzhiyun .public = { 0x0f, 0x83, 0xc3, 0x6f, 0xde, 0xd9, 0xd3, 0x2f,
168*4882a593Smuzhiyun 0xad, 0xf4, 0xef, 0xa3, 0xae, 0x93, 0xa9, 0x0b,
169*4882a593Smuzhiyun 0xb5, 0xcf, 0xa6, 0x68, 0x93, 0xbc, 0x41, 0x2c,
170*4882a593Smuzhiyun 0x43, 0xfa, 0x72, 0x87, 0xdb, 0xb9, 0x97, 0x79 },
171*4882a593Smuzhiyun .result = { 0x67, 0xdd, 0x4a, 0x6e, 0x16, 0x55, 0x33, 0x53,
172*4882a593Smuzhiyun 0x4c, 0x0e, 0x3f, 0x17, 0x2e, 0x4a, 0xb8, 0x57,
173*4882a593Smuzhiyun 0x6b, 0xca, 0x92, 0x3a, 0x5f, 0x07, 0xb2, 0xc0,
174*4882a593Smuzhiyun 0x69, 0xb4, 0xc3, 0x10, 0xff, 0x2e, 0x93, 0x5b },
175*4882a593Smuzhiyun .valid = true
176*4882a593Smuzhiyun },
177*4882a593Smuzhiyun /* wycheproof - public key on twist */
178*4882a593Smuzhiyun {
179*4882a593Smuzhiyun .private = { 0x70, 0xe3, 0x4b, 0xcb, 0xe1, 0xf4, 0x7f, 0xbc,
180*4882a593Smuzhiyun 0x0f, 0xdd, 0xfd, 0x7c, 0x1e, 0x1a, 0xa5, 0x3d,
181*4882a593Smuzhiyun 0x57, 0xbf, 0xe0, 0xf6, 0x6d, 0x24, 0x30, 0x67,
182*4882a593Smuzhiyun 0xb4, 0x24, 0xbb, 0x62, 0x10, 0xbe, 0xd1, 0x9c },
183*4882a593Smuzhiyun .public = { 0x0b, 0x82, 0x11, 0xa2, 0xb6, 0x04, 0x90, 0x97,
184*4882a593Smuzhiyun 0xf6, 0x87, 0x1c, 0x6c, 0x05, 0x2d, 0x3c, 0x5f,
185*4882a593Smuzhiyun 0xc1, 0xba, 0x17, 0xda, 0x9e, 0x32, 0xae, 0x45,
186*4882a593Smuzhiyun 0x84, 0x03, 0xb0, 0x5b, 0xb2, 0x83, 0x09, 0x2a },
187*4882a593Smuzhiyun .result = { 0x4a, 0x06, 0x38, 0xcf, 0xaa, 0x9e, 0xf1, 0x93,
188*4882a593Smuzhiyun 0x3b, 0x47, 0xf8, 0x93, 0x92, 0x96, 0xa6, 0xb2,
189*4882a593Smuzhiyun 0x5b, 0xe5, 0x41, 0xef, 0x7f, 0x70, 0xe8, 0x44,
190*4882a593Smuzhiyun 0xc0, 0xbc, 0xc0, 0x0b, 0x13, 0x4d, 0xe6, 0x4a },
191*4882a593Smuzhiyun .valid = true
192*4882a593Smuzhiyun },
193*4882a593Smuzhiyun /* wycheproof - public key on twist */
194*4882a593Smuzhiyun {
195*4882a593Smuzhiyun .private = { 0x68, 0xc1, 0xf3, 0xa6, 0x53, 0xa4, 0xcd, 0xb1,
196*4882a593Smuzhiyun 0xd3, 0x7b, 0xba, 0x94, 0x73, 0x8f, 0x8b, 0x95,
197*4882a593Smuzhiyun 0x7a, 0x57, 0xbe, 0xb2, 0x4d, 0x64, 0x6e, 0x99,
198*4882a593Smuzhiyun 0x4d, 0xc2, 0x9a, 0x27, 0x6a, 0xad, 0x45, 0x8d },
199*4882a593Smuzhiyun .public = { 0x34, 0x3a, 0xc2, 0x0a, 0x3b, 0x9c, 0x6a, 0x27,
200*4882a593Smuzhiyun 0xb1, 0x00, 0x81, 0x76, 0x50, 0x9a, 0xd3, 0x07,
201*4882a593Smuzhiyun 0x35, 0x85, 0x6e, 0xc1, 0xc8, 0xd8, 0xfc, 0xae,
202*4882a593Smuzhiyun 0x13, 0x91, 0x2d, 0x08, 0xd1, 0x52, 0xf4, 0x6c },
203*4882a593Smuzhiyun .result = { 0x39, 0x94, 0x91, 0xfc, 0xe8, 0xdf, 0xab, 0x73,
204*4882a593Smuzhiyun 0xb4, 0xf9, 0xf6, 0x11, 0xde, 0x8e, 0xa0, 0xb2,
205*4882a593Smuzhiyun 0x7b, 0x28, 0xf8, 0x59, 0x94, 0x25, 0x0b, 0x0f,
206*4882a593Smuzhiyun 0x47, 0x5d, 0x58, 0x5d, 0x04, 0x2a, 0xc2, 0x07 },
207*4882a593Smuzhiyun .valid = true
208*4882a593Smuzhiyun },
209*4882a593Smuzhiyun /* wycheproof - public key on twist */
210*4882a593Smuzhiyun {
211*4882a593Smuzhiyun .private = { 0xd8, 0x77, 0xb2, 0x6d, 0x06, 0xdf, 0xf9, 0xd9,
212*4882a593Smuzhiyun 0xf7, 0xfd, 0x4c, 0x5b, 0x37, 0x69, 0xf8, 0xcd,
213*4882a593Smuzhiyun 0xd5, 0xb3, 0x05, 0x16, 0xa5, 0xab, 0x80, 0x6b,
214*4882a593Smuzhiyun 0xe3, 0x24, 0xff, 0x3e, 0xb6, 0x9e, 0xa0, 0xb2 },
215*4882a593Smuzhiyun .public = { 0xfa, 0x69, 0x5f, 0xc7, 0xbe, 0x8d, 0x1b, 0xe5,
216*4882a593Smuzhiyun 0xbf, 0x70, 0x48, 0x98, 0xf3, 0x88, 0xc4, 0x52,
217*4882a593Smuzhiyun 0xba, 0xfd, 0xd3, 0xb8, 0xea, 0xe8, 0x05, 0xf8,
218*4882a593Smuzhiyun 0x68, 0x1a, 0x8d, 0x15, 0xc2, 0xd4, 0xe1, 0x42 },
219*4882a593Smuzhiyun .result = { 0x2c, 0x4f, 0xe1, 0x1d, 0x49, 0x0a, 0x53, 0x86,
220*4882a593Smuzhiyun 0x17, 0x76, 0xb1, 0x3b, 0x43, 0x54, 0xab, 0xd4,
221*4882a593Smuzhiyun 0xcf, 0x5a, 0x97, 0x69, 0x9d, 0xb6, 0xe6, 0xc6,
222*4882a593Smuzhiyun 0x8c, 0x16, 0x26, 0xd0, 0x76, 0x62, 0xf7, 0x58 },
223*4882a593Smuzhiyun .valid = true
224*4882a593Smuzhiyun },
225*4882a593Smuzhiyun /* wycheproof - public key = 0 */
226*4882a593Smuzhiyun {
227*4882a593Smuzhiyun .private = { 0x20, 0x74, 0x94, 0x03, 0x8f, 0x2b, 0xb8, 0x11,
228*4882a593Smuzhiyun 0xd4, 0x78, 0x05, 0xbc, 0xdf, 0x04, 0xa2, 0xac,
229*4882a593Smuzhiyun 0x58, 0x5a, 0xda, 0x7f, 0x2f, 0x23, 0x38, 0x9b,
230*4882a593Smuzhiyun 0xfd, 0x46, 0x58, 0xf9, 0xdd, 0xd4, 0xde, 0xbc },
231*4882a593Smuzhiyun .public = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
232*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
233*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
234*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
235*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
236*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
237*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
238*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
239*4882a593Smuzhiyun .valid = false
240*4882a593Smuzhiyun },
241*4882a593Smuzhiyun /* wycheproof - public key = 1 */
242*4882a593Smuzhiyun {
243*4882a593Smuzhiyun .private = { 0x20, 0x2e, 0x89, 0x72, 0xb6, 0x1c, 0x7e, 0x61,
244*4882a593Smuzhiyun 0x93, 0x0e, 0xb9, 0x45, 0x0b, 0x50, 0x70, 0xea,
245*4882a593Smuzhiyun 0xe1, 0xc6, 0x70, 0x47, 0x56, 0x85, 0x54, 0x1f,
246*4882a593Smuzhiyun 0x04, 0x76, 0x21, 0x7e, 0x48, 0x18, 0xcf, 0xab },
247*4882a593Smuzhiyun .public = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
248*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
249*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
250*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
251*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
252*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
253*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
254*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
255*4882a593Smuzhiyun .valid = false
256*4882a593Smuzhiyun },
257*4882a593Smuzhiyun /* wycheproof - edge case on twist */
258*4882a593Smuzhiyun {
259*4882a593Smuzhiyun .private = { 0x38, 0xdd, 0xe9, 0xf3, 0xe7, 0xb7, 0x99, 0x04,
260*4882a593Smuzhiyun 0x5f, 0x9a, 0xc3, 0x79, 0x3d, 0x4a, 0x92, 0x77,
261*4882a593Smuzhiyun 0xda, 0xde, 0xad, 0xc4, 0x1b, 0xec, 0x02, 0x90,
262*4882a593Smuzhiyun 0xf8, 0x1f, 0x74, 0x4f, 0x73, 0x77, 0x5f, 0x84 },
263*4882a593Smuzhiyun .public = { 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
264*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
265*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
266*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
267*4882a593Smuzhiyun .result = { 0x9a, 0x2c, 0xfe, 0x84, 0xff, 0x9c, 0x4a, 0x97,
268*4882a593Smuzhiyun 0x39, 0x62, 0x5c, 0xae, 0x4a, 0x3b, 0x82, 0xa9,
269*4882a593Smuzhiyun 0x06, 0x87, 0x7a, 0x44, 0x19, 0x46, 0xf8, 0xd7,
270*4882a593Smuzhiyun 0xb3, 0xd7, 0x95, 0xfe, 0x8f, 0x5d, 0x16, 0x39 },
271*4882a593Smuzhiyun .valid = true
272*4882a593Smuzhiyun },
273*4882a593Smuzhiyun /* wycheproof - edge case on twist */
274*4882a593Smuzhiyun {
275*4882a593Smuzhiyun .private = { 0x98, 0x57, 0xa9, 0x14, 0xe3, 0xc2, 0x90, 0x36,
276*4882a593Smuzhiyun 0xfd, 0x9a, 0x44, 0x2b, 0xa5, 0x26, 0xb5, 0xcd,
277*4882a593Smuzhiyun 0xcd, 0xf2, 0x82, 0x16, 0x15, 0x3e, 0x63, 0x6c,
278*4882a593Smuzhiyun 0x10, 0x67, 0x7a, 0xca, 0xb6, 0xbd, 0x6a, 0xa5 },
279*4882a593Smuzhiyun .public = { 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
280*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
281*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
282*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
283*4882a593Smuzhiyun .result = { 0x4d, 0xa4, 0xe0, 0xaa, 0x07, 0x2c, 0x23, 0x2e,
284*4882a593Smuzhiyun 0xe2, 0xf0, 0xfa, 0x4e, 0x51, 0x9a, 0xe5, 0x0b,
285*4882a593Smuzhiyun 0x52, 0xc1, 0xed, 0xd0, 0x8a, 0x53, 0x4d, 0x4e,
286*4882a593Smuzhiyun 0xf3, 0x46, 0xc2, 0xe1, 0x06, 0xd2, 0x1d, 0x60 },
287*4882a593Smuzhiyun .valid = true
288*4882a593Smuzhiyun },
289*4882a593Smuzhiyun /* wycheproof - edge case on twist */
290*4882a593Smuzhiyun {
291*4882a593Smuzhiyun .private = { 0x48, 0xe2, 0x13, 0x0d, 0x72, 0x33, 0x05, 0xed,
292*4882a593Smuzhiyun 0x05, 0xe6, 0xe5, 0x89, 0x4d, 0x39, 0x8a, 0x5e,
293*4882a593Smuzhiyun 0x33, 0x36, 0x7a, 0x8c, 0x6a, 0xac, 0x8f, 0xcd,
294*4882a593Smuzhiyun 0xf0, 0xa8, 0x8e, 0x4b, 0x42, 0x82, 0x0d, 0xb7 },
295*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0x03, 0x00, 0x00, 0xf8, 0xff,
296*4882a593Smuzhiyun 0xff, 0x1f, 0x00, 0x00, 0xc0, 0xff, 0xff, 0xff,
297*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0xfe, 0xff, 0xff, 0x07, 0x00,
298*4882a593Smuzhiyun 0x00, 0xf0, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00 },
299*4882a593Smuzhiyun .result = { 0x9e, 0xd1, 0x0c, 0x53, 0x74, 0x7f, 0x64, 0x7f,
300*4882a593Smuzhiyun 0x82, 0xf4, 0x51, 0x25, 0xd3, 0xde, 0x15, 0xa1,
301*4882a593Smuzhiyun 0xe6, 0xb8, 0x24, 0x49, 0x6a, 0xb4, 0x04, 0x10,
302*4882a593Smuzhiyun 0xff, 0xcc, 0x3c, 0xfe, 0x95, 0x76, 0x0f, 0x3b },
303*4882a593Smuzhiyun .valid = true
304*4882a593Smuzhiyun },
305*4882a593Smuzhiyun /* wycheproof - edge case on twist */
306*4882a593Smuzhiyun {
307*4882a593Smuzhiyun .private = { 0x28, 0xf4, 0x10, 0x11, 0x69, 0x18, 0x51, 0xb3,
308*4882a593Smuzhiyun 0xa6, 0x2b, 0x64, 0x15, 0x53, 0xb3, 0x0d, 0x0d,
309*4882a593Smuzhiyun 0xfd, 0xdc, 0xb8, 0xff, 0xfc, 0xf5, 0x37, 0x00,
310*4882a593Smuzhiyun 0xa7, 0xbe, 0x2f, 0x6a, 0x87, 0x2e, 0x9f, 0xb0 },
311*4882a593Smuzhiyun .public = { 0x00, 0x00, 0x00, 0xfc, 0xff, 0xff, 0x07, 0x00,
312*4882a593Smuzhiyun 0x00, 0xe0, 0xff, 0xff, 0x3f, 0x00, 0x00, 0x00,
313*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0x01, 0x00, 0x00, 0xf8, 0xff,
314*4882a593Smuzhiyun 0xff, 0x0f, 0x00, 0x00, 0xc0, 0xff, 0xff, 0x7f },
315*4882a593Smuzhiyun .result = { 0xcf, 0x72, 0xb4, 0xaa, 0x6a, 0xa1, 0xc9, 0xf8,
316*4882a593Smuzhiyun 0x94, 0xf4, 0x16, 0x5b, 0x86, 0x10, 0x9a, 0xa4,
317*4882a593Smuzhiyun 0x68, 0x51, 0x76, 0x48, 0xe1, 0xf0, 0xcc, 0x70,
318*4882a593Smuzhiyun 0xe1, 0xab, 0x08, 0x46, 0x01, 0x76, 0x50, 0x6b },
319*4882a593Smuzhiyun .valid = true
320*4882a593Smuzhiyun },
321*4882a593Smuzhiyun /* wycheproof - edge case on twist */
322*4882a593Smuzhiyun {
323*4882a593Smuzhiyun .private = { 0x18, 0xa9, 0x3b, 0x64, 0x99, 0xb9, 0xf6, 0xb3,
324*4882a593Smuzhiyun 0x22, 0x5c, 0xa0, 0x2f, 0xef, 0x41, 0x0e, 0x0a,
325*4882a593Smuzhiyun 0xde, 0xc2, 0x35, 0x32, 0x32, 0x1d, 0x2d, 0x8e,
326*4882a593Smuzhiyun 0xf1, 0xa6, 0xd6, 0x02, 0xa8, 0xc6, 0x5b, 0x83 },
327*4882a593Smuzhiyun .public = { 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
328*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
329*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
330*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0x7f },
331*4882a593Smuzhiyun .result = { 0x5d, 0x50, 0xb6, 0x28, 0x36, 0xbb, 0x69, 0x57,
332*4882a593Smuzhiyun 0x94, 0x10, 0x38, 0x6c, 0xf7, 0xbb, 0x81, 0x1c,
333*4882a593Smuzhiyun 0x14, 0xbf, 0x85, 0xb1, 0xc7, 0xb1, 0x7e, 0x59,
334*4882a593Smuzhiyun 0x24, 0xc7, 0xff, 0xea, 0x91, 0xef, 0x9e, 0x12 },
335*4882a593Smuzhiyun .valid = true
336*4882a593Smuzhiyun },
337*4882a593Smuzhiyun /* wycheproof - edge case on twist */
338*4882a593Smuzhiyun {
339*4882a593Smuzhiyun .private = { 0xc0, 0x1d, 0x13, 0x05, 0xa1, 0x33, 0x8a, 0x1f,
340*4882a593Smuzhiyun 0xca, 0xc2, 0xba, 0x7e, 0x2e, 0x03, 0x2b, 0x42,
341*4882a593Smuzhiyun 0x7e, 0x0b, 0x04, 0x90, 0x31, 0x65, 0xac, 0xa9,
342*4882a593Smuzhiyun 0x57, 0xd8, 0xd0, 0x55, 0x3d, 0x87, 0x17, 0xb0 },
343*4882a593Smuzhiyun .public = { 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
344*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
345*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
346*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
347*4882a593Smuzhiyun .result = { 0x19, 0x23, 0x0e, 0xb1, 0x48, 0xd5, 0xd6, 0x7c,
348*4882a593Smuzhiyun 0x3c, 0x22, 0xab, 0x1d, 0xae, 0xff, 0x80, 0xa5,
349*4882a593Smuzhiyun 0x7e, 0xae, 0x42, 0x65, 0xce, 0x28, 0x72, 0x65,
350*4882a593Smuzhiyun 0x7b, 0x2c, 0x80, 0x99, 0xfc, 0x69, 0x8e, 0x50 },
351*4882a593Smuzhiyun .valid = true
352*4882a593Smuzhiyun },
353*4882a593Smuzhiyun /* wycheproof - edge case for public key */
354*4882a593Smuzhiyun {
355*4882a593Smuzhiyun .private = { 0x38, 0x6f, 0x7f, 0x16, 0xc5, 0x07, 0x31, 0xd6,
356*4882a593Smuzhiyun 0x4f, 0x82, 0xe6, 0xa1, 0x70, 0xb1, 0x42, 0xa4,
357*4882a593Smuzhiyun 0xe3, 0x4f, 0x31, 0xfd, 0x77, 0x68, 0xfc, 0xb8,
358*4882a593Smuzhiyun 0x90, 0x29, 0x25, 0xe7, 0xd1, 0xe2, 0x1a, 0xbe },
359*4882a593Smuzhiyun .public = { 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
360*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
361*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
362*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
363*4882a593Smuzhiyun .result = { 0x0f, 0xca, 0xb5, 0xd8, 0x42, 0xa0, 0x78, 0xd7,
364*4882a593Smuzhiyun 0xa7, 0x1f, 0xc5, 0x9b, 0x57, 0xbf, 0xb4, 0xca,
365*4882a593Smuzhiyun 0x0b, 0xe6, 0x87, 0x3b, 0x49, 0xdc, 0xdb, 0x9f,
366*4882a593Smuzhiyun 0x44, 0xe1, 0x4a, 0xe8, 0xfb, 0xdf, 0xa5, 0x42 },
367*4882a593Smuzhiyun .valid = true
368*4882a593Smuzhiyun },
369*4882a593Smuzhiyun /* wycheproof - edge case for public key */
370*4882a593Smuzhiyun {
371*4882a593Smuzhiyun .private = { 0xe0, 0x23, 0xa2, 0x89, 0xbd, 0x5e, 0x90, 0xfa,
372*4882a593Smuzhiyun 0x28, 0x04, 0xdd, 0xc0, 0x19, 0xa0, 0x5e, 0xf3,
373*4882a593Smuzhiyun 0xe7, 0x9d, 0x43, 0x4b, 0xb6, 0xea, 0x2f, 0x52,
374*4882a593Smuzhiyun 0x2e, 0xcb, 0x64, 0x3a, 0x75, 0x29, 0x6e, 0x95 },
375*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
376*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
377*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
378*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00 },
379*4882a593Smuzhiyun .result = { 0x54, 0xce, 0x8f, 0x22, 0x75, 0xc0, 0x77, 0xe3,
380*4882a593Smuzhiyun 0xb1, 0x30, 0x6a, 0x39, 0x39, 0xc5, 0xe0, 0x3e,
381*4882a593Smuzhiyun 0xef, 0x6b, 0xbb, 0x88, 0x06, 0x05, 0x44, 0x75,
382*4882a593Smuzhiyun 0x8d, 0x9f, 0xef, 0x59, 0xb0, 0xbc, 0x3e, 0x4f },
383*4882a593Smuzhiyun .valid = true
384*4882a593Smuzhiyun },
385*4882a593Smuzhiyun /* wycheproof - edge case for public key */
386*4882a593Smuzhiyun {
387*4882a593Smuzhiyun .private = { 0x68, 0xf0, 0x10, 0xd6, 0x2e, 0xe8, 0xd9, 0x26,
388*4882a593Smuzhiyun 0x05, 0x3a, 0x36, 0x1c, 0x3a, 0x75, 0xc6, 0xea,
389*4882a593Smuzhiyun 0x4e, 0xbd, 0xc8, 0x60, 0x6a, 0xb2, 0x85, 0x00,
390*4882a593Smuzhiyun 0x3a, 0x6f, 0x8f, 0x40, 0x76, 0xb0, 0x1e, 0x83 },
391*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
392*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
393*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
394*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03 },
395*4882a593Smuzhiyun .result = { 0xf1, 0x36, 0x77, 0x5c, 0x5b, 0xeb, 0x0a, 0xf8,
396*4882a593Smuzhiyun 0x11, 0x0a, 0xf1, 0x0b, 0x20, 0x37, 0x23, 0x32,
397*4882a593Smuzhiyun 0x04, 0x3c, 0xab, 0x75, 0x24, 0x19, 0x67, 0x87,
398*4882a593Smuzhiyun 0x75, 0xa2, 0x23, 0xdf, 0x57, 0xc9, 0xd3, 0x0d },
399*4882a593Smuzhiyun .valid = true
400*4882a593Smuzhiyun },
401*4882a593Smuzhiyun /* wycheproof - edge case for public key */
402*4882a593Smuzhiyun {
403*4882a593Smuzhiyun .private = { 0x58, 0xeb, 0xcb, 0x35, 0xb0, 0xf8, 0x84, 0x5c,
404*4882a593Smuzhiyun 0xaf, 0x1e, 0xc6, 0x30, 0xf9, 0x65, 0x76, 0xb6,
405*4882a593Smuzhiyun 0x2c, 0x4b, 0x7b, 0x6c, 0x36, 0xb2, 0x9d, 0xeb,
406*4882a593Smuzhiyun 0x2c, 0xb0, 0x08, 0x46, 0x51, 0x75, 0x5c, 0x96 },
407*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xfb, 0xff,
408*4882a593Smuzhiyun 0xff, 0xdf, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff,
409*4882a593Smuzhiyun 0xfe, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xf7, 0xff,
410*4882a593Smuzhiyun 0xff, 0xf7, 0xff, 0xff, 0xbf, 0xff, 0xff, 0x3f },
411*4882a593Smuzhiyun .result = { 0xbf, 0x9a, 0xff, 0xd0, 0x6b, 0x84, 0x40, 0x85,
412*4882a593Smuzhiyun 0x58, 0x64, 0x60, 0x96, 0x2e, 0xf2, 0x14, 0x6f,
413*4882a593Smuzhiyun 0xf3, 0xd4, 0x53, 0x3d, 0x94, 0x44, 0xaa, 0xb0,
414*4882a593Smuzhiyun 0x06, 0xeb, 0x88, 0xcc, 0x30, 0x54, 0x40, 0x7d },
415*4882a593Smuzhiyun .valid = true
416*4882a593Smuzhiyun },
417*4882a593Smuzhiyun /* wycheproof - edge case for public key */
418*4882a593Smuzhiyun {
419*4882a593Smuzhiyun .private = { 0x18, 0x8c, 0x4b, 0xc5, 0xb9, 0xc4, 0x4b, 0x38,
420*4882a593Smuzhiyun 0xbb, 0x65, 0x8b, 0x9b, 0x2a, 0xe8, 0x2d, 0x5b,
421*4882a593Smuzhiyun 0x01, 0x01, 0x5e, 0x09, 0x31, 0x84, 0xb1, 0x7c,
422*4882a593Smuzhiyun 0xb7, 0x86, 0x35, 0x03, 0xa7, 0x83, 0xe1, 0xbb },
423*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
424*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
425*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
426*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f },
427*4882a593Smuzhiyun .result = { 0xd4, 0x80, 0xde, 0x04, 0xf6, 0x99, 0xcb, 0x3b,
428*4882a593Smuzhiyun 0xe0, 0x68, 0x4a, 0x9c, 0xc2, 0xe3, 0x12, 0x81,
429*4882a593Smuzhiyun 0xea, 0x0b, 0xc5, 0xa9, 0xdc, 0xc1, 0x57, 0xd3,
430*4882a593Smuzhiyun 0xd2, 0x01, 0x58, 0xd4, 0x6c, 0xa5, 0x24, 0x6d },
431*4882a593Smuzhiyun .valid = true
432*4882a593Smuzhiyun },
433*4882a593Smuzhiyun /* wycheproof - edge case for public key */
434*4882a593Smuzhiyun {
435*4882a593Smuzhiyun .private = { 0xe0, 0x6c, 0x11, 0xbb, 0x2e, 0x13, 0xce, 0x3d,
436*4882a593Smuzhiyun 0xc7, 0x67, 0x3f, 0x67, 0xf5, 0x48, 0x22, 0x42,
437*4882a593Smuzhiyun 0x90, 0x94, 0x23, 0xa9, 0xae, 0x95, 0xee, 0x98,
438*4882a593Smuzhiyun 0x6a, 0x98, 0x8d, 0x98, 0xfa, 0xee, 0x23, 0xa2 },
439*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f,
440*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f,
441*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f,
442*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0x7f },
443*4882a593Smuzhiyun .result = { 0x4c, 0x44, 0x01, 0xcc, 0xe6, 0xb5, 0x1e, 0x4c,
444*4882a593Smuzhiyun 0xb1, 0x8f, 0x27, 0x90, 0x24, 0x6c, 0x9b, 0xf9,
445*4882a593Smuzhiyun 0x14, 0xdb, 0x66, 0x77, 0x50, 0xa1, 0xcb, 0x89,
446*4882a593Smuzhiyun 0x06, 0x90, 0x92, 0xaf, 0x07, 0x29, 0x22, 0x76 },
447*4882a593Smuzhiyun .valid = true
448*4882a593Smuzhiyun },
449*4882a593Smuzhiyun /* wycheproof - edge case for public key */
450*4882a593Smuzhiyun {
451*4882a593Smuzhiyun .private = { 0xc0, 0x65, 0x8c, 0x46, 0xdd, 0xe1, 0x81, 0x29,
452*4882a593Smuzhiyun 0x29, 0x38, 0x77, 0x53, 0x5b, 0x11, 0x62, 0xb6,
453*4882a593Smuzhiyun 0xf9, 0xf5, 0x41, 0x4a, 0x23, 0xcf, 0x4d, 0x2c,
454*4882a593Smuzhiyun 0xbc, 0x14, 0x0a, 0x4d, 0x99, 0xda, 0x2b, 0x8f },
455*4882a593Smuzhiyun .public = { 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
456*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
457*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
458*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
459*4882a593Smuzhiyun .result = { 0x57, 0x8b, 0xa8, 0xcc, 0x2d, 0xbd, 0xc5, 0x75,
460*4882a593Smuzhiyun 0xaf, 0xcf, 0x9d, 0xf2, 0xb3, 0xee, 0x61, 0x89,
461*4882a593Smuzhiyun 0xf5, 0x33, 0x7d, 0x68, 0x54, 0xc7, 0x9b, 0x4c,
462*4882a593Smuzhiyun 0xe1, 0x65, 0xea, 0x12, 0x29, 0x3b, 0x3a, 0x0f },
463*4882a593Smuzhiyun .valid = true
464*4882a593Smuzhiyun },
465*4882a593Smuzhiyun /* wycheproof - public key with low order */
466*4882a593Smuzhiyun {
467*4882a593Smuzhiyun .private = { 0x10, 0x25, 0x5c, 0x92, 0x30, 0xa9, 0x7a, 0x30,
468*4882a593Smuzhiyun 0xa4, 0x58, 0xca, 0x28, 0x4a, 0x62, 0x96, 0x69,
469*4882a593Smuzhiyun 0x29, 0x3a, 0x31, 0x89, 0x0c, 0xda, 0x9d, 0x14,
470*4882a593Smuzhiyun 0x7f, 0xeb, 0xc7, 0xd1, 0xe2, 0x2d, 0x6b, 0xb1 },
471*4882a593Smuzhiyun .public = { 0xe0, 0xeb, 0x7a, 0x7c, 0x3b, 0x41, 0xb8, 0xae,
472*4882a593Smuzhiyun 0x16, 0x56, 0xe3, 0xfa, 0xf1, 0x9f, 0xc4, 0x6a,
473*4882a593Smuzhiyun 0xda, 0x09, 0x8d, 0xeb, 0x9c, 0x32, 0xb1, 0xfd,
474*4882a593Smuzhiyun 0x86, 0x62, 0x05, 0x16, 0x5f, 0x49, 0xb8, 0x00 },
475*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
476*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
477*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
478*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
479*4882a593Smuzhiyun .valid = false
480*4882a593Smuzhiyun },
481*4882a593Smuzhiyun /* wycheproof - public key with low order */
482*4882a593Smuzhiyun {
483*4882a593Smuzhiyun .private = { 0x78, 0xf1, 0xe8, 0xed, 0xf1, 0x44, 0x81, 0xb3,
484*4882a593Smuzhiyun 0x89, 0x44, 0x8d, 0xac, 0x8f, 0x59, 0xc7, 0x0b,
485*4882a593Smuzhiyun 0x03, 0x8e, 0x7c, 0xf9, 0x2e, 0xf2, 0xc7, 0xef,
486*4882a593Smuzhiyun 0xf5, 0x7a, 0x72, 0x46, 0x6e, 0x11, 0x52, 0x96 },
487*4882a593Smuzhiyun .public = { 0x5f, 0x9c, 0x95, 0xbc, 0xa3, 0x50, 0x8c, 0x24,
488*4882a593Smuzhiyun 0xb1, 0xd0, 0xb1, 0x55, 0x9c, 0x83, 0xef, 0x5b,
489*4882a593Smuzhiyun 0x04, 0x44, 0x5c, 0xc4, 0x58, 0x1c, 0x8e, 0x86,
490*4882a593Smuzhiyun 0xd8, 0x22, 0x4e, 0xdd, 0xd0, 0x9f, 0x11, 0x57 },
491*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
492*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
493*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
494*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
495*4882a593Smuzhiyun .valid = false
496*4882a593Smuzhiyun },
497*4882a593Smuzhiyun /* wycheproof - public key with low order */
498*4882a593Smuzhiyun {
499*4882a593Smuzhiyun .private = { 0xa0, 0xa0, 0x5a, 0x3e, 0x8f, 0x9f, 0x44, 0x20,
500*4882a593Smuzhiyun 0x4d, 0x5f, 0x80, 0x59, 0xa9, 0x4a, 0xc7, 0xdf,
501*4882a593Smuzhiyun 0xc3, 0x9a, 0x49, 0xac, 0x01, 0x6d, 0xd7, 0x43,
502*4882a593Smuzhiyun 0xdb, 0xfa, 0x43, 0xc5, 0xd6, 0x71, 0xfd, 0x88 },
503*4882a593Smuzhiyun .public = { 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
504*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
505*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
506*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
507*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
508*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
509*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
510*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
511*4882a593Smuzhiyun .valid = false
512*4882a593Smuzhiyun },
513*4882a593Smuzhiyun /* wycheproof - public key with low order */
514*4882a593Smuzhiyun {
515*4882a593Smuzhiyun .private = { 0xd0, 0xdb, 0xb3, 0xed, 0x19, 0x06, 0x66, 0x3f,
516*4882a593Smuzhiyun 0x15, 0x42, 0x0a, 0xf3, 0x1f, 0x4e, 0xaf, 0x65,
517*4882a593Smuzhiyun 0x09, 0xd9, 0xa9, 0x94, 0x97, 0x23, 0x50, 0x06,
518*4882a593Smuzhiyun 0x05, 0xad, 0x7c, 0x1c, 0x6e, 0x74, 0x50, 0xa9 },
519*4882a593Smuzhiyun .public = { 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
520*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
521*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
522*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
523*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
524*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
525*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
526*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
527*4882a593Smuzhiyun .valid = false
528*4882a593Smuzhiyun },
529*4882a593Smuzhiyun /* wycheproof - public key with low order */
530*4882a593Smuzhiyun {
531*4882a593Smuzhiyun .private = { 0xc0, 0xb1, 0xd0, 0xeb, 0x22, 0xb2, 0x44, 0xfe,
532*4882a593Smuzhiyun 0x32, 0x91, 0x14, 0x00, 0x72, 0xcd, 0xd9, 0xd9,
533*4882a593Smuzhiyun 0x89, 0xb5, 0xf0, 0xec, 0xd9, 0x6c, 0x10, 0x0f,
534*4882a593Smuzhiyun 0xeb, 0x5b, 0xca, 0x24, 0x1c, 0x1d, 0x9f, 0x8f },
535*4882a593Smuzhiyun .public = { 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
536*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
537*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
538*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
539*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
540*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
541*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
542*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
543*4882a593Smuzhiyun .valid = false
544*4882a593Smuzhiyun },
545*4882a593Smuzhiyun /* wycheproof - public key with low order */
546*4882a593Smuzhiyun {
547*4882a593Smuzhiyun .private = { 0x48, 0x0b, 0xf4, 0x5f, 0x59, 0x49, 0x42, 0xa8,
548*4882a593Smuzhiyun 0xbc, 0x0f, 0x33, 0x53, 0xc6, 0xe8, 0xb8, 0x85,
549*4882a593Smuzhiyun 0x3d, 0x77, 0xf3, 0x51, 0xf1, 0xc2, 0xca, 0x6c,
550*4882a593Smuzhiyun 0x2d, 0x1a, 0xbf, 0x8a, 0x00, 0xb4, 0x22, 0x9c },
551*4882a593Smuzhiyun .public = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
552*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
553*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
554*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 },
555*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
556*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
557*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
558*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
559*4882a593Smuzhiyun .valid = false
560*4882a593Smuzhiyun },
561*4882a593Smuzhiyun /* wycheproof - public key with low order */
562*4882a593Smuzhiyun {
563*4882a593Smuzhiyun .private = { 0x30, 0xf9, 0x93, 0xfc, 0xf8, 0x51, 0x4f, 0xc8,
564*4882a593Smuzhiyun 0x9b, 0xd8, 0xdb, 0x14, 0xcd, 0x43, 0xba, 0x0d,
565*4882a593Smuzhiyun 0x4b, 0x25, 0x30, 0xe7, 0x3c, 0x42, 0x76, 0xa0,
566*4882a593Smuzhiyun 0x5e, 0x1b, 0x14, 0x5d, 0x42, 0x0c, 0xed, 0xb4 },
567*4882a593Smuzhiyun .public = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
568*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
569*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
570*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 },
571*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
572*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
573*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
574*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
575*4882a593Smuzhiyun .valid = false
576*4882a593Smuzhiyun },
577*4882a593Smuzhiyun /* wycheproof - public key with low order */
578*4882a593Smuzhiyun {
579*4882a593Smuzhiyun .private = { 0xc0, 0x49, 0x74, 0xb7, 0x58, 0x38, 0x0e, 0x2a,
580*4882a593Smuzhiyun 0x5b, 0x5d, 0xf6, 0xeb, 0x09, 0xbb, 0x2f, 0x6b,
581*4882a593Smuzhiyun 0x34, 0x34, 0xf9, 0x82, 0x72, 0x2a, 0x8e, 0x67,
582*4882a593Smuzhiyun 0x6d, 0x3d, 0xa2, 0x51, 0xd1, 0xb3, 0xde, 0x83 },
583*4882a593Smuzhiyun .public = { 0xe0, 0xeb, 0x7a, 0x7c, 0x3b, 0x41, 0xb8, 0xae,
584*4882a593Smuzhiyun 0x16, 0x56, 0xe3, 0xfa, 0xf1, 0x9f, 0xc4, 0x6a,
585*4882a593Smuzhiyun 0xda, 0x09, 0x8d, 0xeb, 0x9c, 0x32, 0xb1, 0xfd,
586*4882a593Smuzhiyun 0x86, 0x62, 0x05, 0x16, 0x5f, 0x49, 0xb8, 0x80 },
587*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
588*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
589*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
590*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
591*4882a593Smuzhiyun .valid = false
592*4882a593Smuzhiyun },
593*4882a593Smuzhiyun /* wycheproof - public key with low order */
594*4882a593Smuzhiyun {
595*4882a593Smuzhiyun .private = { 0x50, 0x2a, 0x31, 0x37, 0x3d, 0xb3, 0x24, 0x46,
596*4882a593Smuzhiyun 0x84, 0x2f, 0xe5, 0xad, 0xd3, 0xe0, 0x24, 0x02,
597*4882a593Smuzhiyun 0x2e, 0xa5, 0x4f, 0x27, 0x41, 0x82, 0xaf, 0xc3,
598*4882a593Smuzhiyun 0xd9, 0xf1, 0xbb, 0x3d, 0x39, 0x53, 0x4e, 0xb5 },
599*4882a593Smuzhiyun .public = { 0x5f, 0x9c, 0x95, 0xbc, 0xa3, 0x50, 0x8c, 0x24,
600*4882a593Smuzhiyun 0xb1, 0xd0, 0xb1, 0x55, 0x9c, 0x83, 0xef, 0x5b,
601*4882a593Smuzhiyun 0x04, 0x44, 0x5c, 0xc4, 0x58, 0x1c, 0x8e, 0x86,
602*4882a593Smuzhiyun 0xd8, 0x22, 0x4e, 0xdd, 0xd0, 0x9f, 0x11, 0xd7 },
603*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
604*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
605*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
606*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
607*4882a593Smuzhiyun .valid = false
608*4882a593Smuzhiyun },
609*4882a593Smuzhiyun /* wycheproof - public key with low order */
610*4882a593Smuzhiyun {
611*4882a593Smuzhiyun .private = { 0x90, 0xfa, 0x64, 0x17, 0xb0, 0xe3, 0x70, 0x30,
612*4882a593Smuzhiyun 0xfd, 0x6e, 0x43, 0xef, 0xf2, 0xab, 0xae, 0xf1,
613*4882a593Smuzhiyun 0x4c, 0x67, 0x93, 0x11, 0x7a, 0x03, 0x9c, 0xf6,
614*4882a593Smuzhiyun 0x21, 0x31, 0x8b, 0xa9, 0x0f, 0x4e, 0x98, 0xbe },
615*4882a593Smuzhiyun .public = { 0xec, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
616*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
617*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
618*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
619*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
620*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
621*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
622*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
623*4882a593Smuzhiyun .valid = false
624*4882a593Smuzhiyun },
625*4882a593Smuzhiyun /* wycheproof - public key with low order */
626*4882a593Smuzhiyun {
627*4882a593Smuzhiyun .private = { 0x78, 0xad, 0x3f, 0x26, 0x02, 0x7f, 0x1c, 0x9f,
628*4882a593Smuzhiyun 0xdd, 0x97, 0x5a, 0x16, 0x13, 0xb9, 0x47, 0x77,
629*4882a593Smuzhiyun 0x9b, 0xad, 0x2c, 0xf2, 0xb7, 0x41, 0xad, 0xe0,
630*4882a593Smuzhiyun 0x18, 0x40, 0x88, 0x5a, 0x30, 0xbb, 0x97, 0x9c },
631*4882a593Smuzhiyun .public = { 0xed, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
632*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
633*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
634*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
635*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
636*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
637*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
638*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
639*4882a593Smuzhiyun .valid = false
640*4882a593Smuzhiyun },
641*4882a593Smuzhiyun /* wycheproof - public key with low order */
642*4882a593Smuzhiyun {
643*4882a593Smuzhiyun .private = { 0x98, 0xe2, 0x3d, 0xe7, 0xb1, 0xe0, 0x92, 0x6e,
644*4882a593Smuzhiyun 0xd9, 0xc8, 0x7e, 0x7b, 0x14, 0xba, 0xf5, 0x5f,
645*4882a593Smuzhiyun 0x49, 0x7a, 0x1d, 0x70, 0x96, 0xf9, 0x39, 0x77,
646*4882a593Smuzhiyun 0x68, 0x0e, 0x44, 0xdc, 0x1c, 0x7b, 0x7b, 0x8b },
647*4882a593Smuzhiyun .public = { 0xee, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
648*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
649*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
650*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
651*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
652*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
653*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
654*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
655*4882a593Smuzhiyun .valid = false
656*4882a593Smuzhiyun },
657*4882a593Smuzhiyun /* wycheproof - public key >= p */
658*4882a593Smuzhiyun {
659*4882a593Smuzhiyun .private = { 0xf0, 0x1e, 0x48, 0xda, 0xfa, 0xc9, 0xd7, 0xbc,
660*4882a593Smuzhiyun 0xf5, 0x89, 0xcb, 0xc3, 0x82, 0xc8, 0x78, 0xd1,
661*4882a593Smuzhiyun 0x8b, 0xda, 0x35, 0x50, 0x58, 0x9f, 0xfb, 0x5d,
662*4882a593Smuzhiyun 0x50, 0xb5, 0x23, 0xbe, 0xbe, 0x32, 0x9d, 0xae },
663*4882a593Smuzhiyun .public = { 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
664*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
665*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
666*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
667*4882a593Smuzhiyun .result = { 0xbd, 0x36, 0xa0, 0x79, 0x0e, 0xb8, 0x83, 0x09,
668*4882a593Smuzhiyun 0x8c, 0x98, 0x8b, 0x21, 0x78, 0x67, 0x73, 0xde,
669*4882a593Smuzhiyun 0x0b, 0x3a, 0x4d, 0xf1, 0x62, 0x28, 0x2c, 0xf1,
670*4882a593Smuzhiyun 0x10, 0xde, 0x18, 0xdd, 0x48, 0x4c, 0xe7, 0x4b },
671*4882a593Smuzhiyun .valid = true
672*4882a593Smuzhiyun },
673*4882a593Smuzhiyun /* wycheproof - public key >= p */
674*4882a593Smuzhiyun {
675*4882a593Smuzhiyun .private = { 0x28, 0x87, 0x96, 0xbc, 0x5a, 0xff, 0x4b, 0x81,
676*4882a593Smuzhiyun 0xa3, 0x75, 0x01, 0x75, 0x7b, 0xc0, 0x75, 0x3a,
677*4882a593Smuzhiyun 0x3c, 0x21, 0x96, 0x47, 0x90, 0xd3, 0x86, 0x99,
678*4882a593Smuzhiyun 0x30, 0x8d, 0xeb, 0xc1, 0x7a, 0x6e, 0xaf, 0x8d },
679*4882a593Smuzhiyun .public = { 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
680*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
681*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
682*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
683*4882a593Smuzhiyun .result = { 0xb4, 0xe0, 0xdd, 0x76, 0xda, 0x7b, 0x07, 0x17,
684*4882a593Smuzhiyun 0x28, 0xb6, 0x1f, 0x85, 0x67, 0x71, 0xaa, 0x35,
685*4882a593Smuzhiyun 0x6e, 0x57, 0xed, 0xa7, 0x8a, 0x5b, 0x16, 0x55,
686*4882a593Smuzhiyun 0xcc, 0x38, 0x20, 0xfb, 0x5f, 0x85, 0x4c, 0x5c },
687*4882a593Smuzhiyun .valid = true
688*4882a593Smuzhiyun },
689*4882a593Smuzhiyun /* wycheproof - public key >= p */
690*4882a593Smuzhiyun {
691*4882a593Smuzhiyun .private = { 0x98, 0xdf, 0x84, 0x5f, 0x66, 0x51, 0xbf, 0x11,
692*4882a593Smuzhiyun 0x38, 0x22, 0x1f, 0x11, 0x90, 0x41, 0xf7, 0x2b,
693*4882a593Smuzhiyun 0x6d, 0xbc, 0x3c, 0x4a, 0xce, 0x71, 0x43, 0xd9,
694*4882a593Smuzhiyun 0x9f, 0xd5, 0x5a, 0xd8, 0x67, 0x48, 0x0d, 0xa8 },
695*4882a593Smuzhiyun .public = { 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
696*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
697*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
698*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
699*4882a593Smuzhiyun .result = { 0x6f, 0xdf, 0x6c, 0x37, 0x61, 0x1d, 0xbd, 0x53,
700*4882a593Smuzhiyun 0x04, 0xdc, 0x0f, 0x2e, 0xb7, 0xc9, 0x51, 0x7e,
701*4882a593Smuzhiyun 0xb3, 0xc5, 0x0e, 0x12, 0xfd, 0x05, 0x0a, 0xc6,
702*4882a593Smuzhiyun 0xde, 0xc2, 0x70, 0x71, 0xd4, 0xbf, 0xc0, 0x34 },
703*4882a593Smuzhiyun .valid = true
704*4882a593Smuzhiyun },
705*4882a593Smuzhiyun /* wycheproof - public key >= p */
706*4882a593Smuzhiyun {
707*4882a593Smuzhiyun .private = { 0xf0, 0x94, 0x98, 0xe4, 0x6f, 0x02, 0xf8, 0x78,
708*4882a593Smuzhiyun 0x82, 0x9e, 0x78, 0xb8, 0x03, 0xd3, 0x16, 0xa2,
709*4882a593Smuzhiyun 0xed, 0x69, 0x5d, 0x04, 0x98, 0xa0, 0x8a, 0xbd,
710*4882a593Smuzhiyun 0xf8, 0x27, 0x69, 0x30, 0xe2, 0x4e, 0xdc, 0xb0 },
711*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
712*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
713*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
714*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
715*4882a593Smuzhiyun .result = { 0x4c, 0x8f, 0xc4, 0xb1, 0xc6, 0xab, 0x88, 0xfb,
716*4882a593Smuzhiyun 0x21, 0xf1, 0x8f, 0x6d, 0x4c, 0x81, 0x02, 0x40,
717*4882a593Smuzhiyun 0xd4, 0xe9, 0x46, 0x51, 0xba, 0x44, 0xf7, 0xa2,
718*4882a593Smuzhiyun 0xc8, 0x63, 0xce, 0xc7, 0xdc, 0x56, 0x60, 0x2d },
719*4882a593Smuzhiyun .valid = true
720*4882a593Smuzhiyun },
721*4882a593Smuzhiyun /* wycheproof - public key >= p */
722*4882a593Smuzhiyun {
723*4882a593Smuzhiyun .private = { 0x18, 0x13, 0xc1, 0x0a, 0x5c, 0x7f, 0x21, 0xf9,
724*4882a593Smuzhiyun 0x6e, 0x17, 0xf2, 0x88, 0xc0, 0xcc, 0x37, 0x60,
725*4882a593Smuzhiyun 0x7c, 0x04, 0xc5, 0xf5, 0xae, 0xa2, 0xdb, 0x13,
726*4882a593Smuzhiyun 0x4f, 0x9e, 0x2f, 0xfc, 0x66, 0xbd, 0x9d, 0xb8 },
727*4882a593Smuzhiyun .public = { 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
728*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
729*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
730*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 },
731*4882a593Smuzhiyun .result = { 0x1c, 0xd0, 0xb2, 0x82, 0x67, 0xdc, 0x54, 0x1c,
732*4882a593Smuzhiyun 0x64, 0x2d, 0x6d, 0x7d, 0xca, 0x44, 0xa8, 0xb3,
733*4882a593Smuzhiyun 0x8a, 0x63, 0x73, 0x6e, 0xef, 0x5c, 0x4e, 0x65,
734*4882a593Smuzhiyun 0x01, 0xff, 0xbb, 0xb1, 0x78, 0x0c, 0x03, 0x3c },
735*4882a593Smuzhiyun .valid = true
736*4882a593Smuzhiyun },
737*4882a593Smuzhiyun /* wycheproof - public key >= p */
738*4882a593Smuzhiyun {
739*4882a593Smuzhiyun .private = { 0x78, 0x57, 0xfb, 0x80, 0x86, 0x53, 0x64, 0x5a,
740*4882a593Smuzhiyun 0x0b, 0xeb, 0x13, 0x8a, 0x64, 0xf5, 0xf4, 0xd7,
741*4882a593Smuzhiyun 0x33, 0xa4, 0x5e, 0xa8, 0x4c, 0x3c, 0xda, 0x11,
742*4882a593Smuzhiyun 0xa9, 0xc0, 0x6f, 0x7e, 0x71, 0x39, 0x14, 0x9e },
743*4882a593Smuzhiyun .public = { 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
744*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
745*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
746*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 },
747*4882a593Smuzhiyun .result = { 0x87, 0x55, 0xbe, 0x01, 0xc6, 0x0a, 0x7e, 0x82,
748*4882a593Smuzhiyun 0x5c, 0xff, 0x3e, 0x0e, 0x78, 0xcb, 0x3a, 0xa4,
749*4882a593Smuzhiyun 0x33, 0x38, 0x61, 0x51, 0x6a, 0xa5, 0x9b, 0x1c,
750*4882a593Smuzhiyun 0x51, 0xa8, 0xb2, 0xa5, 0x43, 0xdf, 0xa8, 0x22 },
751*4882a593Smuzhiyun .valid = true
752*4882a593Smuzhiyun },
753*4882a593Smuzhiyun /* wycheproof - public key >= p */
754*4882a593Smuzhiyun {
755*4882a593Smuzhiyun .private = { 0xe0, 0x3a, 0xa8, 0x42, 0xe2, 0xab, 0xc5, 0x6e,
756*4882a593Smuzhiyun 0x81, 0xe8, 0x7b, 0x8b, 0x9f, 0x41, 0x7b, 0x2a,
757*4882a593Smuzhiyun 0x1e, 0x59, 0x13, 0xc7, 0x23, 0xee, 0xd2, 0x8d,
758*4882a593Smuzhiyun 0x75, 0x2f, 0x8d, 0x47, 0xa5, 0x9f, 0x49, 0x8f },
759*4882a593Smuzhiyun .public = { 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
760*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
761*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
762*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80 },
763*4882a593Smuzhiyun .result = { 0x54, 0xc9, 0xa1, 0xed, 0x95, 0xe5, 0x46, 0xd2,
764*4882a593Smuzhiyun 0x78, 0x22, 0xa3, 0x60, 0x93, 0x1d, 0xda, 0x60,
765*4882a593Smuzhiyun 0xa1, 0xdf, 0x04, 0x9d, 0xa6, 0xf9, 0x04, 0x25,
766*4882a593Smuzhiyun 0x3c, 0x06, 0x12, 0xbb, 0xdc, 0x08, 0x74, 0x76 },
767*4882a593Smuzhiyun .valid = true
768*4882a593Smuzhiyun },
769*4882a593Smuzhiyun /* wycheproof - public key >= p */
770*4882a593Smuzhiyun {
771*4882a593Smuzhiyun .private = { 0xf8, 0xf7, 0x07, 0xb7, 0x99, 0x9b, 0x18, 0xcb,
772*4882a593Smuzhiyun 0x0d, 0x6b, 0x96, 0x12, 0x4f, 0x20, 0x45, 0x97,
773*4882a593Smuzhiyun 0x2c, 0xa2, 0x74, 0xbf, 0xc1, 0x54, 0xad, 0x0c,
774*4882a593Smuzhiyun 0x87, 0x03, 0x8c, 0x24, 0xc6, 0xd0, 0xd4, 0xb2 },
775*4882a593Smuzhiyun .public = { 0xda, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
776*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
777*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
778*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
779*4882a593Smuzhiyun .result = { 0xcc, 0x1f, 0x40, 0xd7, 0x43, 0xcd, 0xc2, 0x23,
780*4882a593Smuzhiyun 0x0e, 0x10, 0x43, 0xda, 0xba, 0x8b, 0x75, 0xe8,
781*4882a593Smuzhiyun 0x10, 0xf1, 0xfb, 0xab, 0x7f, 0x25, 0x52, 0x69,
782*4882a593Smuzhiyun 0xbd, 0x9e, 0xbb, 0x29, 0xe6, 0xbf, 0x49, 0x4f },
783*4882a593Smuzhiyun .valid = true
784*4882a593Smuzhiyun },
785*4882a593Smuzhiyun /* wycheproof - public key >= p */
786*4882a593Smuzhiyun {
787*4882a593Smuzhiyun .private = { 0xa0, 0x34, 0xf6, 0x84, 0xfa, 0x63, 0x1e, 0x1a,
788*4882a593Smuzhiyun 0x34, 0x81, 0x18, 0xc1, 0xce, 0x4c, 0x98, 0x23,
789*4882a593Smuzhiyun 0x1f, 0x2d, 0x9e, 0xec, 0x9b, 0xa5, 0x36, 0x5b,
790*4882a593Smuzhiyun 0x4a, 0x05, 0xd6, 0x9a, 0x78, 0x5b, 0x07, 0x96 },
791*4882a593Smuzhiyun .public = { 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
792*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
793*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
794*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
795*4882a593Smuzhiyun .result = { 0x54, 0x99, 0x8e, 0xe4, 0x3a, 0x5b, 0x00, 0x7b,
796*4882a593Smuzhiyun 0xf4, 0x99, 0xf0, 0x78, 0xe7, 0x36, 0x52, 0x44,
797*4882a593Smuzhiyun 0x00, 0xa8, 0xb5, 0xc7, 0xe9, 0xb9, 0xb4, 0x37,
798*4882a593Smuzhiyun 0x71, 0x74, 0x8c, 0x7c, 0xdf, 0x88, 0x04, 0x12 },
799*4882a593Smuzhiyun .valid = true
800*4882a593Smuzhiyun },
801*4882a593Smuzhiyun /* wycheproof - public key >= p */
802*4882a593Smuzhiyun {
803*4882a593Smuzhiyun .private = { 0x30, 0xb6, 0xc6, 0xa0, 0xf2, 0xff, 0xa6, 0x80,
804*4882a593Smuzhiyun 0x76, 0x8f, 0x99, 0x2b, 0xa8, 0x9e, 0x15, 0x2d,
805*4882a593Smuzhiyun 0x5b, 0xc9, 0x89, 0x3d, 0x38, 0xc9, 0x11, 0x9b,
806*4882a593Smuzhiyun 0xe4, 0xf7, 0x67, 0xbf, 0xab, 0x6e, 0x0c, 0xa5 },
807*4882a593Smuzhiyun .public = { 0xdc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
808*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
809*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
810*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
811*4882a593Smuzhiyun .result = { 0xea, 0xd9, 0xb3, 0x8e, 0xfd, 0xd7, 0x23, 0x63,
812*4882a593Smuzhiyun 0x79, 0x34, 0xe5, 0x5a, 0xb7, 0x17, 0xa7, 0xae,
813*4882a593Smuzhiyun 0x09, 0xeb, 0x86, 0xa2, 0x1d, 0xc3, 0x6a, 0x3f,
814*4882a593Smuzhiyun 0xee, 0xb8, 0x8b, 0x75, 0x9e, 0x39, 0x1e, 0x09 },
815*4882a593Smuzhiyun .valid = true
816*4882a593Smuzhiyun },
817*4882a593Smuzhiyun /* wycheproof - public key >= p */
818*4882a593Smuzhiyun {
819*4882a593Smuzhiyun .private = { 0x90, 0x1b, 0x9d, 0xcf, 0x88, 0x1e, 0x01, 0xe0,
820*4882a593Smuzhiyun 0x27, 0x57, 0x50, 0x35, 0xd4, 0x0b, 0x43, 0xbd,
821*4882a593Smuzhiyun 0xc1, 0xc5, 0x24, 0x2e, 0x03, 0x08, 0x47, 0x49,
822*4882a593Smuzhiyun 0x5b, 0x0c, 0x72, 0x86, 0x46, 0x9b, 0x65, 0x91 },
823*4882a593Smuzhiyun .public = { 0xea, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
824*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
825*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
826*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
827*4882a593Smuzhiyun .result = { 0x60, 0x2f, 0xf4, 0x07, 0x89, 0xb5, 0x4b, 0x41,
828*4882a593Smuzhiyun 0x80, 0x59, 0x15, 0xfe, 0x2a, 0x62, 0x21, 0xf0,
829*4882a593Smuzhiyun 0x7a, 0x50, 0xff, 0xc2, 0xc3, 0xfc, 0x94, 0xcf,
830*4882a593Smuzhiyun 0x61, 0xf1, 0x3d, 0x79, 0x04, 0xe8, 0x8e, 0x0e },
831*4882a593Smuzhiyun .valid = true
832*4882a593Smuzhiyun },
833*4882a593Smuzhiyun /* wycheproof - public key >= p */
834*4882a593Smuzhiyun {
835*4882a593Smuzhiyun .private = { 0x80, 0x46, 0x67, 0x7c, 0x28, 0xfd, 0x82, 0xc9,
836*4882a593Smuzhiyun 0xa1, 0xbd, 0xb7, 0x1a, 0x1a, 0x1a, 0x34, 0xfa,
837*4882a593Smuzhiyun 0xba, 0x12, 0x25, 0xe2, 0x50, 0x7f, 0xe3, 0xf5,
838*4882a593Smuzhiyun 0x4d, 0x10, 0xbd, 0x5b, 0x0d, 0x86, 0x5f, 0x8e },
839*4882a593Smuzhiyun .public = { 0xeb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
840*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
841*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
842*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
843*4882a593Smuzhiyun .result = { 0xe0, 0x0a, 0xe8, 0xb1, 0x43, 0x47, 0x12, 0x47,
844*4882a593Smuzhiyun 0xba, 0x24, 0xf1, 0x2c, 0x88, 0x55, 0x36, 0xc3,
845*4882a593Smuzhiyun 0xcb, 0x98, 0x1b, 0x58, 0xe1, 0xe5, 0x6b, 0x2b,
846*4882a593Smuzhiyun 0xaf, 0x35, 0xc1, 0x2a, 0xe1, 0xf7, 0x9c, 0x26 },
847*4882a593Smuzhiyun .valid = true
848*4882a593Smuzhiyun },
849*4882a593Smuzhiyun /* wycheproof - public key >= p */
850*4882a593Smuzhiyun {
851*4882a593Smuzhiyun .private = { 0x60, 0x2f, 0x7e, 0x2f, 0x68, 0xa8, 0x46, 0xb8,
852*4882a593Smuzhiyun 0x2c, 0xc2, 0x69, 0xb1, 0xd4, 0x8e, 0x93, 0x98,
853*4882a593Smuzhiyun 0x86, 0xae, 0x54, 0xfd, 0x63, 0x6c, 0x1f, 0xe0,
854*4882a593Smuzhiyun 0x74, 0xd7, 0x10, 0x12, 0x7d, 0x47, 0x24, 0x91 },
855*4882a593Smuzhiyun .public = { 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
856*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
857*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
858*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
859*4882a593Smuzhiyun .result = { 0x98, 0xcb, 0x9b, 0x50, 0xdd, 0x3f, 0xc2, 0xb0,
860*4882a593Smuzhiyun 0xd4, 0xf2, 0xd2, 0xbf, 0x7c, 0x5c, 0xfd, 0xd1,
861*4882a593Smuzhiyun 0x0c, 0x8f, 0xcd, 0x31, 0xfc, 0x40, 0xaf, 0x1a,
862*4882a593Smuzhiyun 0xd4, 0x4f, 0x47, 0xc1, 0x31, 0x37, 0x63, 0x62 },
863*4882a593Smuzhiyun .valid = true
864*4882a593Smuzhiyun },
865*4882a593Smuzhiyun /* wycheproof - public key >= p */
866*4882a593Smuzhiyun {
867*4882a593Smuzhiyun .private = { 0x60, 0x88, 0x7b, 0x3d, 0xc7, 0x24, 0x43, 0x02,
868*4882a593Smuzhiyun 0x6e, 0xbe, 0xdb, 0xbb, 0xb7, 0x06, 0x65, 0xf4,
869*4882a593Smuzhiyun 0x2b, 0x87, 0xad, 0xd1, 0x44, 0x0e, 0x77, 0x68,
870*4882a593Smuzhiyun 0xfb, 0xd7, 0xe8, 0xe2, 0xce, 0x5f, 0x63, 0x9d },
871*4882a593Smuzhiyun .public = { 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
872*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
873*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
874*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
875*4882a593Smuzhiyun .result = { 0x38, 0xd6, 0x30, 0x4c, 0x4a, 0x7e, 0x6d, 0x9f,
876*4882a593Smuzhiyun 0x79, 0x59, 0x33, 0x4f, 0xb5, 0x24, 0x5b, 0xd2,
877*4882a593Smuzhiyun 0xc7, 0x54, 0x52, 0x5d, 0x4c, 0x91, 0xdb, 0x95,
878*4882a593Smuzhiyun 0x02, 0x06, 0x92, 0x62, 0x34, 0xc1, 0xf6, 0x33 },
879*4882a593Smuzhiyun .valid = true
880*4882a593Smuzhiyun },
881*4882a593Smuzhiyun /* wycheproof - public key >= p */
882*4882a593Smuzhiyun {
883*4882a593Smuzhiyun .private = { 0x78, 0xd3, 0x1d, 0xfa, 0x85, 0x44, 0x97, 0xd7,
884*4882a593Smuzhiyun 0x2d, 0x8d, 0xef, 0x8a, 0x1b, 0x7f, 0xb0, 0x06,
885*4882a593Smuzhiyun 0xce, 0xc2, 0xd8, 0xc4, 0x92, 0x46, 0x47, 0xc9,
886*4882a593Smuzhiyun 0x38, 0x14, 0xae, 0x56, 0xfa, 0xed, 0xa4, 0x95 },
887*4882a593Smuzhiyun .public = { 0xf1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
888*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
889*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
890*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
891*4882a593Smuzhiyun .result = { 0x78, 0x6c, 0xd5, 0x49, 0x96, 0xf0, 0x14, 0xa5,
892*4882a593Smuzhiyun 0xa0, 0x31, 0xec, 0x14, 0xdb, 0x81, 0x2e, 0xd0,
893*4882a593Smuzhiyun 0x83, 0x55, 0x06, 0x1f, 0xdb, 0x5d, 0xe6, 0x80,
894*4882a593Smuzhiyun 0xa8, 0x00, 0xac, 0x52, 0x1f, 0x31, 0x8e, 0x23 },
895*4882a593Smuzhiyun .valid = true
896*4882a593Smuzhiyun },
897*4882a593Smuzhiyun /* wycheproof - public key >= p */
898*4882a593Smuzhiyun {
899*4882a593Smuzhiyun .private = { 0xc0, 0x4c, 0x5b, 0xae, 0xfa, 0x83, 0x02, 0xdd,
900*4882a593Smuzhiyun 0xde, 0xd6, 0xa4, 0xbb, 0x95, 0x77, 0x61, 0xb4,
901*4882a593Smuzhiyun 0xeb, 0x97, 0xae, 0xfa, 0x4f, 0xc3, 0xb8, 0x04,
902*4882a593Smuzhiyun 0x30, 0x85, 0xf9, 0x6a, 0x56, 0x59, 0xb3, 0xa5 },
903*4882a593Smuzhiyun .public = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
904*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
905*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
906*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
907*4882a593Smuzhiyun .result = { 0x29, 0xae, 0x8b, 0xc7, 0x3e, 0x9b, 0x10, 0xa0,
908*4882a593Smuzhiyun 0x8b, 0x4f, 0x68, 0x1c, 0x43, 0xc3, 0xe0, 0xac,
909*4882a593Smuzhiyun 0x1a, 0x17, 0x1d, 0x31, 0xb3, 0x8f, 0x1a, 0x48,
910*4882a593Smuzhiyun 0xef, 0xba, 0x29, 0xae, 0x63, 0x9e, 0xa1, 0x34 },
911*4882a593Smuzhiyun .valid = true
912*4882a593Smuzhiyun },
913*4882a593Smuzhiyun /* wycheproof - RFC 7748 */
914*4882a593Smuzhiyun {
915*4882a593Smuzhiyun .private = { 0xa0, 0x46, 0xe3, 0x6b, 0xf0, 0x52, 0x7c, 0x9d,
916*4882a593Smuzhiyun 0x3b, 0x16, 0x15, 0x4b, 0x82, 0x46, 0x5e, 0xdd,
917*4882a593Smuzhiyun 0x62, 0x14, 0x4c, 0x0a, 0xc1, 0xfc, 0x5a, 0x18,
918*4882a593Smuzhiyun 0x50, 0x6a, 0x22, 0x44, 0xba, 0x44, 0x9a, 0x44 },
919*4882a593Smuzhiyun .public = { 0xe6, 0xdb, 0x68, 0x67, 0x58, 0x30, 0x30, 0xdb,
920*4882a593Smuzhiyun 0x35, 0x94, 0xc1, 0xa4, 0x24, 0xb1, 0x5f, 0x7c,
921*4882a593Smuzhiyun 0x72, 0x66, 0x24, 0xec, 0x26, 0xb3, 0x35, 0x3b,
922*4882a593Smuzhiyun 0x10, 0xa9, 0x03, 0xa6, 0xd0, 0xab, 0x1c, 0x4c },
923*4882a593Smuzhiyun .result = { 0xc3, 0xda, 0x55, 0x37, 0x9d, 0xe9, 0xc6, 0x90,
924*4882a593Smuzhiyun 0x8e, 0x94, 0xea, 0x4d, 0xf2, 0x8d, 0x08, 0x4f,
925*4882a593Smuzhiyun 0x32, 0xec, 0xcf, 0x03, 0x49, 0x1c, 0x71, 0xf7,
926*4882a593Smuzhiyun 0x54, 0xb4, 0x07, 0x55, 0x77, 0xa2, 0x85, 0x52 },
927*4882a593Smuzhiyun .valid = true
928*4882a593Smuzhiyun },
929*4882a593Smuzhiyun /* wycheproof - RFC 7748 */
930*4882a593Smuzhiyun {
931*4882a593Smuzhiyun .private = { 0x48, 0x66, 0xe9, 0xd4, 0xd1, 0xb4, 0x67, 0x3c,
932*4882a593Smuzhiyun 0x5a, 0xd2, 0x26, 0x91, 0x95, 0x7d, 0x6a, 0xf5,
933*4882a593Smuzhiyun 0xc1, 0x1b, 0x64, 0x21, 0xe0, 0xea, 0x01, 0xd4,
934*4882a593Smuzhiyun 0x2c, 0xa4, 0x16, 0x9e, 0x79, 0x18, 0xba, 0x4d },
935*4882a593Smuzhiyun .public = { 0xe5, 0x21, 0x0f, 0x12, 0x78, 0x68, 0x11, 0xd3,
936*4882a593Smuzhiyun 0xf4, 0xb7, 0x95, 0x9d, 0x05, 0x38, 0xae, 0x2c,
937*4882a593Smuzhiyun 0x31, 0xdb, 0xe7, 0x10, 0x6f, 0xc0, 0x3c, 0x3e,
938*4882a593Smuzhiyun 0xfc, 0x4c, 0xd5, 0x49, 0xc7, 0x15, 0xa4, 0x13 },
939*4882a593Smuzhiyun .result = { 0x95, 0xcb, 0xde, 0x94, 0x76, 0xe8, 0x90, 0x7d,
940*4882a593Smuzhiyun 0x7a, 0xad, 0xe4, 0x5c, 0xb4, 0xb8, 0x73, 0xf8,
941*4882a593Smuzhiyun 0x8b, 0x59, 0x5a, 0x68, 0x79, 0x9f, 0xa1, 0x52,
942*4882a593Smuzhiyun 0xe6, 0xf8, 0xf7, 0x64, 0x7a, 0xac, 0x79, 0x57 },
943*4882a593Smuzhiyun .valid = true
944*4882a593Smuzhiyun },
945*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
946*4882a593Smuzhiyun {
947*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
948*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
949*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
950*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
951*4882a593Smuzhiyun .public = { 0x0a, 0xb4, 0xe7, 0x63, 0x80, 0xd8, 0x4d, 0xde,
952*4882a593Smuzhiyun 0x4f, 0x68, 0x33, 0xc5, 0x8f, 0x2a, 0x9f, 0xb8,
953*4882a593Smuzhiyun 0xf8, 0x3b, 0xb0, 0x16, 0x9b, 0x17, 0x2b, 0xe4,
954*4882a593Smuzhiyun 0xb6, 0xe0, 0x59, 0x28, 0x87, 0x74, 0x1a, 0x36 },
955*4882a593Smuzhiyun .result = { 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
956*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
957*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
958*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
959*4882a593Smuzhiyun .valid = true
960*4882a593Smuzhiyun },
961*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
962*4882a593Smuzhiyun {
963*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
964*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
965*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
966*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
967*4882a593Smuzhiyun .public = { 0x89, 0xe1, 0x0d, 0x57, 0x01, 0xb4, 0x33, 0x7d,
968*4882a593Smuzhiyun 0x2d, 0x03, 0x21, 0x81, 0x53, 0x8b, 0x10, 0x64,
969*4882a593Smuzhiyun 0xbd, 0x40, 0x84, 0x40, 0x1c, 0xec, 0xa1, 0xfd,
970*4882a593Smuzhiyun 0x12, 0x66, 0x3a, 0x19, 0x59, 0x38, 0x80, 0x00 },
971*4882a593Smuzhiyun .result = { 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
972*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
973*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
974*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
975*4882a593Smuzhiyun .valid = true
976*4882a593Smuzhiyun },
977*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
978*4882a593Smuzhiyun {
979*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
980*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
981*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
982*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
983*4882a593Smuzhiyun .public = { 0x2b, 0x55, 0xd3, 0xaa, 0x4a, 0x8f, 0x80, 0xc8,
984*4882a593Smuzhiyun 0xc0, 0xb2, 0xae, 0x5f, 0x93, 0x3e, 0x85, 0xaf,
985*4882a593Smuzhiyun 0x49, 0xbe, 0xac, 0x36, 0xc2, 0xfa, 0x73, 0x94,
986*4882a593Smuzhiyun 0xba, 0xb7, 0x6c, 0x89, 0x33, 0xf8, 0xf8, 0x1d },
987*4882a593Smuzhiyun .result = { 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
988*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
989*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
990*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
991*4882a593Smuzhiyun .valid = true
992*4882a593Smuzhiyun },
993*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
994*4882a593Smuzhiyun {
995*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
996*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
997*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
998*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
999*4882a593Smuzhiyun .public = { 0x63, 0xe5, 0xb1, 0xfe, 0x96, 0x01, 0xfe, 0x84,
1000*4882a593Smuzhiyun 0x38, 0x5d, 0x88, 0x66, 0xb0, 0x42, 0x12, 0x62,
1001*4882a593Smuzhiyun 0xf7, 0x8f, 0xbf, 0xa5, 0xaf, 0xf9, 0x58, 0x5e,
1002*4882a593Smuzhiyun 0x62, 0x66, 0x79, 0xb1, 0x85, 0x47, 0xd9, 0x59 },
1003*4882a593Smuzhiyun .result = { 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1004*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1005*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1006*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f },
1007*4882a593Smuzhiyun .valid = true
1008*4882a593Smuzhiyun },
1009*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1010*4882a593Smuzhiyun {
1011*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1012*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1013*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1014*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1015*4882a593Smuzhiyun .public = { 0xe4, 0x28, 0xf3, 0xda, 0xc1, 0x78, 0x09, 0xf8,
1016*4882a593Smuzhiyun 0x27, 0xa5, 0x22, 0xce, 0x32, 0x35, 0x50, 0x58,
1017*4882a593Smuzhiyun 0xd0, 0x73, 0x69, 0x36, 0x4a, 0xa7, 0x89, 0x02,
1018*4882a593Smuzhiyun 0xee, 0x10, 0x13, 0x9b, 0x9f, 0x9d, 0xd6, 0x53 },
1019*4882a593Smuzhiyun .result = { 0xfc, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1020*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1021*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1022*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f },
1023*4882a593Smuzhiyun .valid = true
1024*4882a593Smuzhiyun },
1025*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1026*4882a593Smuzhiyun {
1027*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1028*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1029*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1030*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1031*4882a593Smuzhiyun .public = { 0xb3, 0xb5, 0x0e, 0x3e, 0xd3, 0xa4, 0x07, 0xb9,
1032*4882a593Smuzhiyun 0x5d, 0xe9, 0x42, 0xef, 0x74, 0x57, 0x5b, 0x5a,
1033*4882a593Smuzhiyun 0xb8, 0xa1, 0x0c, 0x09, 0xee, 0x10, 0x35, 0x44,
1034*4882a593Smuzhiyun 0xd6, 0x0b, 0xdf, 0xed, 0x81, 0x38, 0xab, 0x2b },
1035*4882a593Smuzhiyun .result = { 0xf9, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1036*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1037*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1038*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f },
1039*4882a593Smuzhiyun .valid = true
1040*4882a593Smuzhiyun },
1041*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1042*4882a593Smuzhiyun {
1043*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1044*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1045*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1046*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1047*4882a593Smuzhiyun .public = { 0x21, 0x3f, 0xff, 0xe9, 0x3d, 0x5e, 0xa8, 0xcd,
1048*4882a593Smuzhiyun 0x24, 0x2e, 0x46, 0x28, 0x44, 0x02, 0x99, 0x22,
1049*4882a593Smuzhiyun 0xc4, 0x3c, 0x77, 0xc9, 0xe3, 0xe4, 0x2f, 0x56,
1050*4882a593Smuzhiyun 0x2f, 0x48, 0x5d, 0x24, 0xc5, 0x01, 0xa2, 0x0b },
1051*4882a593Smuzhiyun .result = { 0xf3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1052*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1053*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1054*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f },
1055*4882a593Smuzhiyun .valid = true
1056*4882a593Smuzhiyun },
1057*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1058*4882a593Smuzhiyun {
1059*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1060*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1061*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1062*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1063*4882a593Smuzhiyun .public = { 0x91, 0xb2, 0x32, 0xa1, 0x78, 0xb3, 0xcd, 0x53,
1064*4882a593Smuzhiyun 0x09, 0x32, 0x44, 0x1e, 0x61, 0x39, 0x41, 0x8f,
1065*4882a593Smuzhiyun 0x72, 0x17, 0x22, 0x92, 0xf1, 0xda, 0x4c, 0x18,
1066*4882a593Smuzhiyun 0x34, 0xfc, 0x5e, 0xbf, 0xef, 0xb5, 0x1e, 0x3f },
1067*4882a593Smuzhiyun .result = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1068*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1069*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1070*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x03 },
1071*4882a593Smuzhiyun .valid = true
1072*4882a593Smuzhiyun },
1073*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1074*4882a593Smuzhiyun {
1075*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1076*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1077*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1078*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1079*4882a593Smuzhiyun .public = { 0x04, 0x5c, 0x6e, 0x11, 0xc5, 0xd3, 0x32, 0x55,
1080*4882a593Smuzhiyun 0x6c, 0x78, 0x22, 0xfe, 0x94, 0xeb, 0xf8, 0x9b,
1081*4882a593Smuzhiyun 0x56, 0xa3, 0x87, 0x8d, 0xc2, 0x7c, 0xa0, 0x79,
1082*4882a593Smuzhiyun 0x10, 0x30, 0x58, 0x84, 0x9f, 0xab, 0xcb, 0x4f },
1083*4882a593Smuzhiyun .result = { 0xe5, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1084*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1085*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1086*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
1087*4882a593Smuzhiyun .valid = true
1088*4882a593Smuzhiyun },
1089*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1090*4882a593Smuzhiyun {
1091*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1092*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1093*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1094*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1095*4882a593Smuzhiyun .public = { 0x1c, 0xa2, 0x19, 0x0b, 0x71, 0x16, 0x35, 0x39,
1096*4882a593Smuzhiyun 0x06, 0x3c, 0x35, 0x77, 0x3b, 0xda, 0x0c, 0x9c,
1097*4882a593Smuzhiyun 0x92, 0x8e, 0x91, 0x36, 0xf0, 0x62, 0x0a, 0xeb,
1098*4882a593Smuzhiyun 0x09, 0x3f, 0x09, 0x91, 0x97, 0xb7, 0xf7, 0x4e },
1099*4882a593Smuzhiyun .result = { 0xe3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1100*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1101*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1102*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
1103*4882a593Smuzhiyun .valid = true
1104*4882a593Smuzhiyun },
1105*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1106*4882a593Smuzhiyun {
1107*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1108*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1109*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1110*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1111*4882a593Smuzhiyun .public = { 0xf7, 0x6e, 0x90, 0x10, 0xac, 0x33, 0xc5, 0x04,
1112*4882a593Smuzhiyun 0x3b, 0x2d, 0x3b, 0x76, 0xa8, 0x42, 0x17, 0x10,
1113*4882a593Smuzhiyun 0x00, 0xc4, 0x91, 0x62, 0x22, 0xe9, 0xe8, 0x58,
1114*4882a593Smuzhiyun 0x97, 0xa0, 0xae, 0xc7, 0xf6, 0x35, 0x0b, 0x3c },
1115*4882a593Smuzhiyun .result = { 0xdd, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1116*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1117*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1118*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
1119*4882a593Smuzhiyun .valid = true
1120*4882a593Smuzhiyun },
1121*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1122*4882a593Smuzhiyun {
1123*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1124*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1125*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1126*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1127*4882a593Smuzhiyun .public = { 0xbb, 0x72, 0x68, 0x8d, 0x8f, 0x8a, 0xa7, 0xa3,
1128*4882a593Smuzhiyun 0x9c, 0xd6, 0x06, 0x0c, 0xd5, 0xc8, 0x09, 0x3c,
1129*4882a593Smuzhiyun 0xde, 0xc6, 0xfe, 0x34, 0x19, 0x37, 0xc3, 0x88,
1130*4882a593Smuzhiyun 0x6a, 0x99, 0x34, 0x6c, 0xd0, 0x7f, 0xaa, 0x55 },
1131*4882a593Smuzhiyun .result = { 0xdb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1132*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1133*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1134*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f },
1135*4882a593Smuzhiyun .valid = true
1136*4882a593Smuzhiyun },
1137*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1138*4882a593Smuzhiyun {
1139*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1140*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1141*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1142*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1143*4882a593Smuzhiyun .public = { 0x88, 0xfd, 0xde, 0xa1, 0x93, 0x39, 0x1c, 0x6a,
1144*4882a593Smuzhiyun 0x59, 0x33, 0xef, 0x9b, 0x71, 0x90, 0x15, 0x49,
1145*4882a593Smuzhiyun 0x44, 0x72, 0x05, 0xaa, 0xe9, 0xda, 0x92, 0x8a,
1146*4882a593Smuzhiyun 0x6b, 0x91, 0xa3, 0x52, 0xba, 0x10, 0xf4, 0x1f },
1147*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1148*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1149*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1150*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 },
1151*4882a593Smuzhiyun .valid = true
1152*4882a593Smuzhiyun },
1153*4882a593Smuzhiyun /* wycheproof - edge case for shared secret */
1154*4882a593Smuzhiyun {
1155*4882a593Smuzhiyun .private = { 0xa0, 0xa4, 0xf1, 0x30, 0xb9, 0x8a, 0x5b, 0xe4,
1156*4882a593Smuzhiyun 0xb1, 0xce, 0xdb, 0x7c, 0xb8, 0x55, 0x84, 0xa3,
1157*4882a593Smuzhiyun 0x52, 0x0e, 0x14, 0x2d, 0x47, 0x4d, 0xc9, 0xcc,
1158*4882a593Smuzhiyun 0xb9, 0x09, 0xa0, 0x73, 0xa9, 0x76, 0xbf, 0x63 },
1159*4882a593Smuzhiyun .public = { 0x30, 0x3b, 0x39, 0x2f, 0x15, 0x31, 0x16, 0xca,
1160*4882a593Smuzhiyun 0xd9, 0xcc, 0x68, 0x2a, 0x00, 0xcc, 0xc4, 0x4c,
1161*4882a593Smuzhiyun 0x95, 0xff, 0x0d, 0x3b, 0xbe, 0x56, 0x8b, 0xeb,
1162*4882a593Smuzhiyun 0x6c, 0x4e, 0x73, 0x9b, 0xaf, 0xdc, 0x2c, 0x68 },
1163*4882a593Smuzhiyun .result = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1164*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1165*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1166*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00 },
1167*4882a593Smuzhiyun .valid = true
1168*4882a593Smuzhiyun },
1169*4882a593Smuzhiyun /* wycheproof - checking for overflow */
1170*4882a593Smuzhiyun {
1171*4882a593Smuzhiyun .private = { 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d,
1172*4882a593Smuzhiyun 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d,
1173*4882a593Smuzhiyun 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c,
1174*4882a593Smuzhiyun 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 },
1175*4882a593Smuzhiyun .public = { 0xfd, 0x30, 0x0a, 0xeb, 0x40, 0xe1, 0xfa, 0x58,
1176*4882a593Smuzhiyun 0x25, 0x18, 0x41, 0x2b, 0x49, 0xb2, 0x08, 0xa7,
1177*4882a593Smuzhiyun 0x84, 0x2b, 0x1e, 0x1f, 0x05, 0x6a, 0x04, 0x01,
1178*4882a593Smuzhiyun 0x78, 0xea, 0x41, 0x41, 0x53, 0x4f, 0x65, 0x2d },
1179*4882a593Smuzhiyun .result = { 0xb7, 0x34, 0x10, 0x5d, 0xc2, 0x57, 0x58, 0x5d,
1180*4882a593Smuzhiyun 0x73, 0xb5, 0x66, 0xcc, 0xb7, 0x6f, 0x06, 0x27,
1181*4882a593Smuzhiyun 0x95, 0xcc, 0xbe, 0xc8, 0x91, 0x28, 0xe5, 0x2b,
1182*4882a593Smuzhiyun 0x02, 0xf3, 0xe5, 0x96, 0x39, 0xf1, 0x3c, 0x46 },
1183*4882a593Smuzhiyun .valid = true
1184*4882a593Smuzhiyun },
1185*4882a593Smuzhiyun /* wycheproof - checking for overflow */
1186*4882a593Smuzhiyun {
1187*4882a593Smuzhiyun .private = { 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d,
1188*4882a593Smuzhiyun 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d,
1189*4882a593Smuzhiyun 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c,
1190*4882a593Smuzhiyun 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 },
1191*4882a593Smuzhiyun .public = { 0xc8, 0xef, 0x79, 0xb5, 0x14, 0xd7, 0x68, 0x26,
1192*4882a593Smuzhiyun 0x77, 0xbc, 0x79, 0x31, 0xe0, 0x6e, 0xe5, 0xc2,
1193*4882a593Smuzhiyun 0x7c, 0x9b, 0x39, 0x2b, 0x4a, 0xe9, 0x48, 0x44,
1194*4882a593Smuzhiyun 0x73, 0xf5, 0x54, 0xe6, 0x67, 0x8e, 0xcc, 0x2e },
1195*4882a593Smuzhiyun .result = { 0x64, 0x7a, 0x46, 0xb6, 0xfc, 0x3f, 0x40, 0xd6,
1196*4882a593Smuzhiyun 0x21, 0x41, 0xee, 0x3c, 0xee, 0x70, 0x6b, 0x4d,
1197*4882a593Smuzhiyun 0x7a, 0x92, 0x71, 0x59, 0x3a, 0x7b, 0x14, 0x3e,
1198*4882a593Smuzhiyun 0x8e, 0x2e, 0x22, 0x79, 0x88, 0x3e, 0x45, 0x50 },
1199*4882a593Smuzhiyun .valid = true
1200*4882a593Smuzhiyun },
1201*4882a593Smuzhiyun /* wycheproof - checking for overflow */
1202*4882a593Smuzhiyun {
1203*4882a593Smuzhiyun .private = { 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d,
1204*4882a593Smuzhiyun 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d,
1205*4882a593Smuzhiyun 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c,
1206*4882a593Smuzhiyun 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 },
1207*4882a593Smuzhiyun .public = { 0x64, 0xae, 0xac, 0x25, 0x04, 0x14, 0x48, 0x61,
1208*4882a593Smuzhiyun 0x53, 0x2b, 0x7b, 0xbc, 0xb6, 0xc8, 0x7d, 0x67,
1209*4882a593Smuzhiyun 0xdd, 0x4c, 0x1f, 0x07, 0xeb, 0xc2, 0xe0, 0x6e,
1210*4882a593Smuzhiyun 0xff, 0xb9, 0x5a, 0xec, 0xc6, 0x17, 0x0b, 0x2c },
1211*4882a593Smuzhiyun .result = { 0x4f, 0xf0, 0x3d, 0x5f, 0xb4, 0x3c, 0xd8, 0x65,
1212*4882a593Smuzhiyun 0x7a, 0x3c, 0xf3, 0x7c, 0x13, 0x8c, 0xad, 0xce,
1213*4882a593Smuzhiyun 0xcc, 0xe5, 0x09, 0xe4, 0xeb, 0xa0, 0x89, 0xd0,
1214*4882a593Smuzhiyun 0xef, 0x40, 0xb4, 0xe4, 0xfb, 0x94, 0x61, 0x55 },
1215*4882a593Smuzhiyun .valid = true
1216*4882a593Smuzhiyun },
1217*4882a593Smuzhiyun /* wycheproof - checking for overflow */
1218*4882a593Smuzhiyun {
1219*4882a593Smuzhiyun .private = { 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d,
1220*4882a593Smuzhiyun 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d,
1221*4882a593Smuzhiyun 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c,
1222*4882a593Smuzhiyun 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 },
1223*4882a593Smuzhiyun .public = { 0xbf, 0x68, 0xe3, 0x5e, 0x9b, 0xdb, 0x7e, 0xee,
1224*4882a593Smuzhiyun 0x1b, 0x50, 0x57, 0x02, 0x21, 0x86, 0x0f, 0x5d,
1225*4882a593Smuzhiyun 0xcd, 0xad, 0x8a, 0xcb, 0xab, 0x03, 0x1b, 0x14,
1226*4882a593Smuzhiyun 0x97, 0x4c, 0xc4, 0x90, 0x13, 0xc4, 0x98, 0x31 },
1227*4882a593Smuzhiyun .result = { 0x21, 0xce, 0xe5, 0x2e, 0xfd, 0xbc, 0x81, 0x2e,
1228*4882a593Smuzhiyun 0x1d, 0x02, 0x1a, 0x4a, 0xf1, 0xe1, 0xd8, 0xbc,
1229*4882a593Smuzhiyun 0x4d, 0xb3, 0xc4, 0x00, 0xe4, 0xd2, 0xa2, 0xc5,
1230*4882a593Smuzhiyun 0x6a, 0x39, 0x26, 0xdb, 0x4d, 0x99, 0xc6, 0x5b },
1231*4882a593Smuzhiyun .valid = true
1232*4882a593Smuzhiyun },
1233*4882a593Smuzhiyun /* wycheproof - checking for overflow */
1234*4882a593Smuzhiyun {
1235*4882a593Smuzhiyun .private = { 0xc8, 0x17, 0x24, 0x70, 0x40, 0x00, 0xb2, 0x6d,
1236*4882a593Smuzhiyun 0x31, 0x70, 0x3c, 0xc9, 0x7e, 0x3a, 0x37, 0x8d,
1237*4882a593Smuzhiyun 0x56, 0xfa, 0xd8, 0x21, 0x93, 0x61, 0xc8, 0x8c,
1238*4882a593Smuzhiyun 0xca, 0x8b, 0xd7, 0xc5, 0x71, 0x9b, 0x12, 0xb2 },
1239*4882a593Smuzhiyun .public = { 0x53, 0x47, 0xc4, 0x91, 0x33, 0x1a, 0x64, 0xb4,
1240*4882a593Smuzhiyun 0x3d, 0xdc, 0x68, 0x30, 0x34, 0xe6, 0x77, 0xf5,
1241*4882a593Smuzhiyun 0x3d, 0xc3, 0x2b, 0x52, 0xa5, 0x2a, 0x57, 0x7c,
1242*4882a593Smuzhiyun 0x15, 0xa8, 0x3b, 0xf2, 0x98, 0xe9, 0x9f, 0x19 },
1243*4882a593Smuzhiyun .result = { 0x18, 0xcb, 0x89, 0xe4, 0xe2, 0x0c, 0x0c, 0x2b,
1244*4882a593Smuzhiyun 0xd3, 0x24, 0x30, 0x52, 0x45, 0x26, 0x6c, 0x93,
1245*4882a593Smuzhiyun 0x27, 0x69, 0x0b, 0xbe, 0x79, 0xac, 0xb8, 0x8f,
1246*4882a593Smuzhiyun 0x5b, 0x8f, 0xb3, 0xf7, 0x4e, 0xca, 0x3e, 0x52 },
1247*4882a593Smuzhiyun .valid = true
1248*4882a593Smuzhiyun },
1249*4882a593Smuzhiyun /* wycheproof - private key == -1 (mod order) */
1250*4882a593Smuzhiyun {
1251*4882a593Smuzhiyun .private = { 0xa0, 0x23, 0xcd, 0xd0, 0x83, 0xef, 0x5b, 0xb8,
1252*4882a593Smuzhiyun 0x2f, 0x10, 0xd6, 0x2e, 0x59, 0xe1, 0x5a, 0x68,
1253*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1254*4882a593Smuzhiyun 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50 },
1255*4882a593Smuzhiyun .public = { 0x25, 0x8e, 0x04, 0x52, 0x3b, 0x8d, 0x25, 0x3e,
1256*4882a593Smuzhiyun 0xe6, 0x57, 0x19, 0xfc, 0x69, 0x06, 0xc6, 0x57,
1257*4882a593Smuzhiyun 0x19, 0x2d, 0x80, 0x71, 0x7e, 0xdc, 0x82, 0x8f,
1258*4882a593Smuzhiyun 0xa0, 0xaf, 0x21, 0x68, 0x6e, 0x2f, 0xaa, 0x75 },
1259*4882a593Smuzhiyun .result = { 0x25, 0x8e, 0x04, 0x52, 0x3b, 0x8d, 0x25, 0x3e,
1260*4882a593Smuzhiyun 0xe6, 0x57, 0x19, 0xfc, 0x69, 0x06, 0xc6, 0x57,
1261*4882a593Smuzhiyun 0x19, 0x2d, 0x80, 0x71, 0x7e, 0xdc, 0x82, 0x8f,
1262*4882a593Smuzhiyun 0xa0, 0xaf, 0x21, 0x68, 0x6e, 0x2f, 0xaa, 0x75 },
1263*4882a593Smuzhiyun .valid = true
1264*4882a593Smuzhiyun },
1265*4882a593Smuzhiyun /* wycheproof - private key == 1 (mod order) on twist */
1266*4882a593Smuzhiyun {
1267*4882a593Smuzhiyun .private = { 0x58, 0x08, 0x3d, 0xd2, 0x61, 0xad, 0x91, 0xef,
1268*4882a593Smuzhiyun 0xf9, 0x52, 0x32, 0x2e, 0xc8, 0x24, 0xc6, 0x82,
1269*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
1270*4882a593Smuzhiyun 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x5f },
1271*4882a593Smuzhiyun .public = { 0x2e, 0xae, 0x5e, 0xc3, 0xdd, 0x49, 0x4e, 0x9f,
1272*4882a593Smuzhiyun 0x2d, 0x37, 0xd2, 0x58, 0xf8, 0x73, 0xa8, 0xe6,
1273*4882a593Smuzhiyun 0xe9, 0xd0, 0xdb, 0xd1, 0xe3, 0x83, 0xef, 0x64,
1274*4882a593Smuzhiyun 0xd9, 0x8b, 0xb9, 0x1b, 0x3e, 0x0b, 0xe0, 0x35 },
1275*4882a593Smuzhiyun .result = { 0x2e, 0xae, 0x5e, 0xc3, 0xdd, 0x49, 0x4e, 0x9f,
1276*4882a593Smuzhiyun 0x2d, 0x37, 0xd2, 0x58, 0xf8, 0x73, 0xa8, 0xe6,
1277*4882a593Smuzhiyun 0xe9, 0xd0, 0xdb, 0xd1, 0xe3, 0x83, 0xef, 0x64,
1278*4882a593Smuzhiyun 0xd9, 0x8b, 0xb9, 0x1b, 0x3e, 0x0b, 0xe0, 0x35 },
1279*4882a593Smuzhiyun .valid = true
1280*4882a593Smuzhiyun }
1281*4882a593Smuzhiyun };
1282*4882a593Smuzhiyun
curve25519_selftest(void)1283*4882a593Smuzhiyun bool __init curve25519_selftest(void)
1284*4882a593Smuzhiyun {
1285*4882a593Smuzhiyun bool success = true, ret, ret2;
1286*4882a593Smuzhiyun size_t i = 0, j;
1287*4882a593Smuzhiyun u8 in[CURVE25519_KEY_SIZE];
1288*4882a593Smuzhiyun u8 out[CURVE25519_KEY_SIZE], out2[CURVE25519_KEY_SIZE],
1289*4882a593Smuzhiyun out3[CURVE25519_KEY_SIZE];
1290*4882a593Smuzhiyun
1291*4882a593Smuzhiyun for (i = 0; i < ARRAY_SIZE(curve25519_test_vectors); ++i) {
1292*4882a593Smuzhiyun memset(out, 0, CURVE25519_KEY_SIZE);
1293*4882a593Smuzhiyun ret = curve25519(out, curve25519_test_vectors[i].private,
1294*4882a593Smuzhiyun curve25519_test_vectors[i].public);
1295*4882a593Smuzhiyun if (ret != curve25519_test_vectors[i].valid ||
1296*4882a593Smuzhiyun memcmp(out, curve25519_test_vectors[i].result,
1297*4882a593Smuzhiyun CURVE25519_KEY_SIZE)) {
1298*4882a593Smuzhiyun pr_err("curve25519 self-test %zu: FAIL\n", i + 1);
1299*4882a593Smuzhiyun success = false;
1300*4882a593Smuzhiyun }
1301*4882a593Smuzhiyun }
1302*4882a593Smuzhiyun
1303*4882a593Smuzhiyun for (i = 0; i < 5; ++i) {
1304*4882a593Smuzhiyun get_random_bytes(in, sizeof(in));
1305*4882a593Smuzhiyun ret = curve25519_generate_public(out, in);
1306*4882a593Smuzhiyun ret2 = curve25519(out2, in, (u8[CURVE25519_KEY_SIZE]){ 9 });
1307*4882a593Smuzhiyun curve25519_generic(out3, in, (u8[CURVE25519_KEY_SIZE]){ 9 });
1308*4882a593Smuzhiyun if (ret != ret2 ||
1309*4882a593Smuzhiyun memcmp(out, out2, CURVE25519_KEY_SIZE) ||
1310*4882a593Smuzhiyun memcmp(out, out3, CURVE25519_KEY_SIZE)) {
1311*4882a593Smuzhiyun pr_err("curve25519 basepoint self-test %zu: FAIL: input - 0x",
1312*4882a593Smuzhiyun i + 1);
1313*4882a593Smuzhiyun for (j = CURVE25519_KEY_SIZE; j-- > 0;)
1314*4882a593Smuzhiyun printk(KERN_CONT "%02x", in[j]);
1315*4882a593Smuzhiyun printk(KERN_CONT "\n");
1316*4882a593Smuzhiyun success = false;
1317*4882a593Smuzhiyun }
1318*4882a593Smuzhiyun }
1319*4882a593Smuzhiyun
1320*4882a593Smuzhiyun return success;
1321*4882a593Smuzhiyun }
1322