-
Notifications
You must be signed in to change notification settings - Fork 8
/
cref.c
2649 lines (2285 loc) · 80.8 KB
/
cref.c
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
#include "cref.h"
// -- scalar.c --
const group_scalar group_scalar_zero = {{0}};
const group_scalar group_scalar_one = {{1}};
static const crypto_uint32 m[32] = {0xED, 0xD3, 0xF5, 0x5C, 0x1A, 0x63, 0x12, 0x58, 0xD6, 0x9C, 0xF7, 0xA2, 0xDE, 0xF9, 0xDE, 0x14,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10};
static const crypto_uint32 mu[33] = {0x1B, 0x13, 0x2C, 0x0A, 0xA3, 0xE5, 0x9C, 0xED, 0xA7, 0x29, 0x63, 0x08, 0x5D, 0x21, 0x06, 0x21,
0xEB, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0F};
static crypto_uint32 lt(crypto_uint32 a,crypto_uint32 b) /* 16-bit inputs */
{
unsigned int x = a;
x -= (unsigned int) b; /* 0..65535: no; 4294901761..4294967295: yes */
x >>= 31; /* 0: no; 1: yes */
return x;
}
/* Reduce coefficients of r before calling reduce_add_sub */
static void reduce_add_sub(group_scalar *r)
{
crypto_uint32 pb = 0;
crypto_uint32 b;
crypto_uint32 mask;
int i;
unsigned char t[32];
for(i=0;i<32;i++)
{
pb += m[i];
b = lt(r->v[i],pb);
t[i] = r->v[i]-pb+(b<<8);
pb = b;
}
mask = b - 1;
for(i=0;i<32;i++)
r->v[i] ^= mask & (r->v[i] ^ t[i]);
}
/* Reduce coefficients of x before calling barrett_reduce */
static void barrett_reduce(group_scalar *r, const crypto_uint32 x[64])
{
/* See HAC, Alg. 14.42 */
int i,j;
crypto_uint32 q2[66];
crypto_uint32 *q3 = q2 + 33;
crypto_uint32 r1[33];
crypto_uint32 r2[33];
crypto_uint32 carry;
crypto_uint32 pb = 0;
crypto_uint32 b;
for (i = 0;i < 66;++i) q2[i] = 0;
for (i = 0;i < 33;++i) r2[i] = 0;
for(i=0;i<33;i++)
for(j=0;j<33;j++)
if(i+j >= 31) q2[i+j] += mu[i]*x[j+31];
carry = q2[31] >> 8;
q2[32] += carry;
carry = q2[32] >> 8;
q2[33] += carry;
for(i=0;i<33;i++)r1[i] = x[i];
for(i=0;i<32;i++)
for(j=0;j<33;j++)
if(i+j < 33) r2[i+j] += m[i]*q3[j];
for(i=0;i<32;i++)
{
carry = r2[i] >> 8;
r2[i+1] += carry;
r2[i] &= 0xff;
}
for(i=0;i<32;i++)
{
pb += r2[i];
b = lt(r1[i],pb);
r->v[i] = r1[i]-pb+(b<<8);
pb = b;
}
/* XXX: Can it really happen that r<0?, See HAC, Alg 14.42, Step 3
* If so: Handle it here!
*/
reduce_add_sub(r);
reduce_add_sub(r);
}
int group_scalar_unpack(group_scalar *r, const unsigned char x[GROUP_SCALAR_PACKEDBYTES])
{
int i;
for(i=0;i<32;i++)
r->v[i] = x[i];
r->v[31] &= 0x1f;
reduce_add_sub(r);
return 0;
}
void group_scalar_pack(unsigned char r[GROUP_SCALAR_PACKEDBYTES], const group_scalar *x)
{
int i;
for(i=0;i<32;i++)
r[i] = x->v[i];
}
void group_scalar_setzero(group_scalar *r)
{
int i;
for(i=0;i<32;i++)
r->v[i] = 0;
}
void group_scalar_setone(group_scalar *r)
{
int i;
r->v[0] = 1;
for(i=1;i<32;i++)
r->v[i] = 0;
}
/* Removed to avoid dependency on platform specific randombytes
void group_scalar_setrandom(group_scalar *r)
{
unsigned char t[64];
crypto_uint32 s[64];
int i;
randombytes(t,64);
for(i=0;i<64;i++)
s[i] = t[i];
barrett_reduce(r,s);
}
*/
void group_scalar_add(group_scalar *r, const group_scalar *x, const group_scalar *y)
{
int i, carry;
for(i=0;i<32;i++) r->v[i] = x->v[i] + y->v[i];
for(i=0;i<31;i++)
{
carry = r->v[i] >> 8;
r->v[i+1] += carry;
r->v[i] &= 0xff;
}
reduce_add_sub(r);
}
void group_scalar_sub(group_scalar *r, const group_scalar *x, const group_scalar *y)
{
crypto_uint32 b = 0;
crypto_uint32 t;
int i;
group_scalar d;
for(i=0;i<32;i++)
{
t = m[i] - y->v[i] - b;
d.v[i] = t & 255;
b = (t >> 8) & 1;
}
group_scalar_add(r,x,&d);
}
void group_scalar_negate(group_scalar *r, const group_scalar *x)
{
group_scalar t;
group_scalar_setzero(&t);
group_scalar_sub(r,&t,x);
}
void group_scalar_mul(group_scalar *r, const group_scalar *x, const group_scalar *y)
{
int i,j,carry;
crypto_uint32 t[64];
for(i=0;i<64;i++)t[i] = 0;
for(i=0;i<32;i++)
for(j=0;j<32;j++)
t[i+j] += x->v[i] * y->v[j];
/* Reduce coefficients */
for(i=0;i<63;i++)
{
carry = t[i] >> 8;
t[i+1] += carry;
t[i] &= 0xff;
}
barrett_reduce(r, t);
}
void group_scalar_square(group_scalar *r, const group_scalar *x)
{
group_scalar_mul(r,x,x);
}
void group_scalar_invert(group_scalar *r, const group_scalar *x)
{
group_scalar t0, t1, t2, t3, t4, t5;
int i;
group_scalar_square(&t1, x);
group_scalar_mul(&t2, x, &t1);
group_scalar_mul(&t0, &t1, &t2);
group_scalar_square(&t1, &t0);
group_scalar_square(&t3, &t1);
group_scalar_mul(&t1, &t2, &t3);
group_scalar_square(&t2, &t1);
group_scalar_mul(&t3, &t0, &t2);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t1, &t2, &t0);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_square(&t0, &t1);
group_scalar_square(&t3, &t0);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t3, &t1, &t0);
group_scalar_mul(&t0, &t2, &t3);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t1, &t2);
group_scalar_square(&t3, &t1);
group_scalar_square(&t4, &t3);
group_scalar_mul(&t3, &t1, &t4);
group_scalar_mul(&t1, &t0, &t3);
group_scalar_mul(&t0, &t2, &t1);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t1, &t2);
group_scalar_square(&t3, &t1);
group_scalar_mul(&t1, &t0, &t3);
group_scalar_square(&t0, &t1);
group_scalar_square(&t3, &t0);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_square(&t1, &t0);
group_scalar_mul(&t0, &t2, &t1);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_square(&t0, &t1);
group_scalar_square(&t3, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t3, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t3, &t0);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t1, &t2, &t0);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t4, &t2, &t0);
group_scalar_square(&t0, &t4);
group_scalar_square(&t4, &t0);
group_scalar_mul(&t0, &t1, &t4);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t3, &t1, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t4, &t0);
group_scalar_mul(&t0, &t3, &t4);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t2, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_mul(&t0, &t2, &t1);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t1, &t2);
group_scalar_square(&t3, &t1);
group_scalar_mul(&t1, &t0, &t3);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_square(&t1, &t0);
group_scalar_square(&t2, &t1);
group_scalar_mul(&t1, &t0, &t2);
group_scalar_mul(&t2, &t3, &t1);
group_scalar_mul(&t1, &t0, &t2);
group_scalar_mul(&t0, &t2, &t1);
group_scalar_square(&t2, &t0);
group_scalar_mul(&t3, &t0, &t2);
group_scalar_square(&t2, &t3);
group_scalar_mul(&t3, &t1, &t2);
group_scalar_mul(&t1, &t0, &t3);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t4, &t2, &t0);
group_scalar_square(&t0, &t4);
group_scalar_square(&t4, &t0);
group_scalar_square(&t5, &t4);
group_scalar_square(&t4, &t5);
group_scalar_square(&t5, &t4);
group_scalar_square(&t4, &t5);
group_scalar_mul(&t5, &t0, &t4);
group_scalar_mul(&t0, &t2, &t5);
group_scalar_mul(&t2, &t3, &t0);
group_scalar_mul(&t0, &t1, &t2);
group_scalar_square(&t1, &t0);
group_scalar_mul(&t3, &t0, &t1);
group_scalar_square(&t1, &t3);
group_scalar_mul(&t4, &t0, &t1);
group_scalar_square(&t1, &t4);
group_scalar_square(&t4, &t1);
group_scalar_square(&t1, &t4);
group_scalar_mul(&t4, &t3, &t1);
group_scalar_mul(&t1, &t2, &t4);
group_scalar_square(&t2, &t1);
group_scalar_square(&t3, &t2);
group_scalar_square(&t4, &t3);
group_scalar_mul(&t3, &t2, &t4);
group_scalar_mul(&t2, &t1, &t3);
group_scalar_mul(&t3, &t0, &t2);
group_scalar_square(&t0, &t3);
group_scalar_square(&t2, &t0);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t2, &t1, &t0);
group_scalar_mul(&t0, &t3, &t2);
group_scalar_square(&t1, &t0);
group_scalar_square(&t3, &t1);
group_scalar_mul(&t4, &t1, &t3);
group_scalar_square(&t3, &t4);
group_scalar_square(&t4, &t3);
group_scalar_mul(&t3, &t1, &t4);
group_scalar_mul(&t1, &t2, &t3);
group_scalar_square(&t2, &t1);
group_scalar_square(&t3, &t2);
group_scalar_mul(&t2, &t0, &t3);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t3, &t1, &t0);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t1, &t2, &t0);
group_scalar_mul(&t0, &t3, &t1);
group_scalar_square(&t2, &t0);
group_scalar_square(&t3, &t2);
group_scalar_square(&t2, &t3);
group_scalar_square(&t3, &t2);
group_scalar_mul(&t2, &t1, &t3);
group_scalar_mul(&t1, &t0, &t2);
group_scalar_square(&t0, &t1);
group_scalar_square(&t3, &t0);
group_scalar_square(&t4, &t3);
group_scalar_mul(&t3, &t0, &t4);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t2, &t0);
group_scalar_mul(&t0, &t1, &t2);
group_scalar_square(&t1, &t0);
group_scalar_mul(&t2, &t3, &t1);
group_scalar_mul(&t1, &t0, &t2);
group_scalar_square(&t0, &t1);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t2, &t0);
group_scalar_mul(&t0, &t1, &t2);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_square(&t2, &t1);
group_scalar_mul(&t3, &t0, &t2);
group_scalar_mul(&t0, &t1, &t3);
group_scalar_square(&t1, &t0);
group_scalar_square(&t2, &t1);
group_scalar_square(&t4, &t2);
group_scalar_mul(&t2, &t1, &t4);
group_scalar_square(&t4, &t2);
group_scalar_square(&t2, &t4);
group_scalar_square(&t4, &t2);
group_scalar_mul(&t2, &t1, &t4);
group_scalar_mul(&t1, &t3, &t2);
group_scalar_square(&t2, &t1);
group_scalar_square(&t3, &t2);
group_scalar_mul(&t2, &t1, &t3);
group_scalar_square(&t3, &t2);
group_scalar_square(&t2, &t3);
group_scalar_mul(&t3, &t1, &t2);
group_scalar_mul(&t2, &t0, &t3);
group_scalar_square(&t0, &t2);
group_scalar_mul(&t3, &t2, &t0);
group_scalar_square(&t0, &t3);
group_scalar_square(&t4, &t0);
group_scalar_mul(&t0, &t3, &t4);
group_scalar_mul(&t3, &t1, &t0);
group_scalar_square(&t0, &t3);
group_scalar_mul(&t1, &t3, &t0);
group_scalar_mul(&t0, &t2, &t1);
for(i = 0; i < 126; i++)
group_scalar_square(&t0, &t0);
group_scalar_mul(r, &t3, &t0);
}
int group_scalar_isone(const group_scalar *x)
{
unsigned long long r;
int i;
r = 1-x->v[0];
for(i=1;i<32;i++)
r |= x->v[i];
return 1-((-r)>>63);
}
int group_scalar_iszero(const group_scalar *x)
{
unsigned long long r=0;
int i;
for(i=0;i<32;i++)
r |= x->v[i];
return 1-((-r)>>63);
}
int group_scalar_equals(const group_scalar *x, const group_scalar *y)
{
unsigned long long r=0;
int i;
for(i=0;i<32;i++)
r |= (x->v[i] ^ y->v[i]);
return 1-((-r)>>63);
}
// Additional functions, not required by API
int scalar_tstbit(const group_scalar *x, const unsigned int pos)
{
return (x->v[pos >> 3] & (1ULL << (pos & 0x7))) >> (pos & 0x7);
}
int scalar_bitlen(const group_scalar *x)
{
int i;
unsigned long long mask;
int ctr = 256;
int found = 0;
int t;
for(i=31;i>=0;i--)
{
for(mask = (1 << 7);mask>0;mask>>=1)
{
found = found || (mask & x->v[i]);
t = ctr - 1;
ctr = (found * ctr)^((1-found)*t);
}
}
return ctr;
}
void scalar_window3(signed char r[85], const group_scalar *s)
{
char carry;
int i;
for(i=0;i<10;i++)
{
r[8*i+0] = s->v[3*i+0] & 7;
r[8*i+1] = (s->v[3*i+0] >> 3) & 7;
r[8*i+2] = (s->v[3*i+0] >> 6) & 7;
r[8*i+2] ^= (s->v[3*i+1] << 2) & 7;
r[8*i+3] = (s->v[3*i+1] >> 1) & 7;
r[8*i+4] = (s->v[3*i+1] >> 4) & 7;
r[8*i+5] = (s->v[3*i+1] >> 7) & 7;
r[8*i+5] ^= (s->v[3*i+2] << 1) & 7;
r[8*i+6] = (s->v[3*i+2] >> 2) & 7;
r[8*i+7] = (s->v[3*i+2] >> 5) & 7;
}
r[8*i+0] = s->v[3*i+0] & 7;
r[8*i+1] = (s->v[3*i+0] >> 3) & 7;
r[8*i+2] = (s->v[3*i+0] >> 6) & 7;
r[8*i+2] ^= (s->v[3*i+1] << 2) & 7;
r[8*i+3] = (s->v[3*i+1] >> 1) & 7;
r[8*i+4] = (s->v[3*i+1] >> 4) & 7;
/* Making it signed */
carry = 0;
for(i=0;i<84;i++)
{
r[i] += carry;
r[i+1] += r[i] >> 3;
r[i] &= 7;
carry = r[i] >> 2;
r[i] -= carry<<3;
}
r[84] += carry;
}
void scalar_window5(signed char r[51], const group_scalar *s)
{
char carry;
int i;
for(i=0;i<6;i++)
{
r[8*i+0] = s->v[5*i+0] & 31;
r[8*i+1] = (s->v[5*i+0] >> 5) & 31;
r[8*i+1] ^= (s->v[5*i+1] << 3) & 31;
r[8*i+2] = (s->v[5*i+1] >> 2) & 31;
r[8*i+3] = (s->v[5*i+1] >> 7) & 31;
r[8*i+3] ^= (s->v[5*i+2] << 1) & 31;
r[8*i+4] = (s->v[5*i+2] >> 4) & 31;
r[8*i+4] ^= (s->v[5*i+3] << 4) & 31;
r[8*i+5] = (s->v[5*i+3] >> 1) & 31;
r[8*i+6] = (s->v[5*i+3] >> 6) & 31;
r[8*i+6] ^= (s->v[5*i+4] << 2) & 31;
r[8*i+7] = (s->v[5*i+4] >> 3) & 31;
}
r[8*i+0] = s->v[5*i+0] & 31;
r[8*i+1] = (s->v[5*i+0] >> 5) & 31;
r[8*i+1] ^= (s->v[5*i+1] << 3) & 31;
r[8*i+2] = (s->v[5*i+1] >> 2) & 31;
/* Making it signed */
carry = 0;
for(i=0;i<50;i++)
{
r[i] += carry;
r[i+1] += r[i] >> 5;
r[i] &= 31;
carry = r[i] >> 4;
r[i] -= carry << 5;
}
r[50] += carry;
}
void scalar_slide(signed char r[256], const group_scalar *s, int swindowsize)
{
int i,j,k,b,m=(1<<(swindowsize-1))-1, soplen=256;
for(i=0;i<32;i++)
{
r[8*i+0] = s->v[i] & 1;
r[8*i+1] = (s->v[i] >> 1) & 1;
r[8*i+2] = (s->v[i] >> 2) & 1;
r[8*i+3] = (s->v[i] >> 3) & 1;
r[8*i+4] = (s->v[i] >> 4) & 1;
r[8*i+5] = (s->v[i] >> 5) & 1;
r[8*i+6] = (s->v[i] >> 6) & 1;
r[8*i+7] = (s->v[i] >> 7) & 1;
}
/* Making it sliding window */
for (j = 0;j < soplen;++j)
{
if (r[j]) {
for (b = 1;b < soplen - j && b <= 6;++b) {
if (r[j] + (r[j + b] << b) <= m)
{
r[j] += r[j + b] << b; r[j + b] = 0;
}
else if (r[j] - (r[j + b] << b) >= -m)
{
r[j] -= r[j + b] << b;
for (k = j + b;k < soplen;++k)
{
if (!r[k]) {
r[k] = 1;
break;
}
r[k] = 0;
}
}
else if (r[j + b])
break;
}
}
}
}
/*
void scalar_print(const group_scalar *x)
{
int i;
for(i=0;i<31;i++)
printf("%d*2^(%d*8) + ",x->v[i],i);
printf("%d*2^(%d*8)\n",x->v[i],i);
}
*/
void scalar_from64bytes(group_scalar *r, const unsigned char h[64])
{
int i;
crypto_uint32 t[64];
for(i=0;i<64;i++) t[i] = h[i];
barrett_reduce(r, t);
}
// -- fe25519.c --
const fe25519 fe25519_zero = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0}};
const fe25519 fe25519_one = {{1, 0, 0, 0, 0, 0, 0, 0, 0, 0}};
const fe25519 fe25519_two = {{2, 0, 0, 0, 0, 0, 0, 0, 0, 0}};
const fe25519 fe25519_sqrtm1 = {{-32595792, -7943725, 9377950, 3500415, 12389472, -272473, -25146209, -2005654, 326686, 11406482}};
const fe25519 fe25519_msqrtm1 = {{32595792, 7943725, -9377950, -3500415, -12389472, 272473, 25146209, 2005654, -326686, -11406482}};
const fe25519 fe25519_m1 = {{-1, 0, 0, 0, 0, 0, 0, 0, 0, 0}};
static crypto_uint32 fe25519_c_static_equal(crypto_uint32 a,crypto_uint32 b) /* 16-bit inputs */
{
crypto_uint32 x = a ^ b; /* 0: yes; 1..65535: no */
x -= 1; /* 4294967295: yes; 0..65534: no */
x >>= 31; /* 1: yes; 0: no */
return x;
}
static crypto_uint64 load_3(const unsigned char *in)
{
crypto_uint64 result;
result = (crypto_uint64) in[0];
result |= ((crypto_uint64) in[1]) << 8;
result |= ((crypto_uint64) in[2]) << 16;
return result;
}
static crypto_uint64 load_4(const unsigned char *in)
{
crypto_uint64 result;
result = (crypto_uint64) in[0];
result |= ((crypto_uint64) in[1]) << 8;
result |= ((crypto_uint64) in[2]) << 16;
result |= ((crypto_uint64) in[3]) << 24;
return result;
}
/*
* Ignores top bit of h.
*/
void fe25519_unpack(fe25519 *h,const unsigned char s[32])
{
crypto_int64 h0 = load_4(s);
crypto_int64 h1 = load_3(s + 4) << 6;
crypto_int64 h2 = load_3(s + 7) << 5;
crypto_int64 h3 = load_3(s + 10) << 3;
crypto_int64 h4 = load_3(s + 13) << 2;
crypto_int64 h5 = load_4(s + 16);
crypto_int64 h6 = load_3(s + 20) << 7;
crypto_int64 h7 = load_3(s + 23) << 5;
crypto_int64 h8 = load_3(s + 26) << 4;
crypto_int64 h9 = (load_3(s + 29) & 8388607) << 2;
crypto_int64 carry0;
crypto_int64 carry1;
crypto_int64 carry2;
crypto_int64 carry3;
crypto_int64 carry4;
crypto_int64 carry5;
crypto_int64 carry6;
crypto_int64 carry7;
crypto_int64 carry8;
crypto_int64 carry9;
carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25;
carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25;
carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25;
carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26;
carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26;
carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26;
h->v[0] = h0;
h->v[1] = h1;
h->v[2] = h2;
h->v[3] = h3;
h->v[4] = h4;
h->v[5] = h5;
h->v[6] = h6;
h->v[7] = h7;
h->v[8] = h8;
h->v[9] = h9;
}
/*
* Preconditions:
* |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
*
* Write p=2^255-19; q=floor(h/p).
* Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))).
*
* Proof:
* Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4.
* Also have |h-2^230 h9|<2^231 so |19 2^(-255)(h-2^230 h9)|<1/4.
*
* Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9).
* Then 0<y<1.
*
* Write r=h-pq.
* Have 0<=r<=p-1=2^255-20.
* Thus 0<=r+19(2^-255)r<r+19(2^-255)2^255<=2^255-1.
*
* Write x=r+19(2^-255)r+y.
* Then 0<x<2^255 so floor(2^(-255)x) = 0 so floor(q+2^(-255)x) = q.
*
* Have q+2^(-255)x = 2^(-255)(h + 19 2^(-25) h9 + 2^(-1))
* so floor(2^(-255)(h + 19 2^(-25) h9 + 2^(-1))) = q.
*/
void fe25519_pack(unsigned char s[32],const fe25519 *h)
{
crypto_int32 h0 = h->v[0];
crypto_int32 h1 = h->v[1];
crypto_int32 h2 = h->v[2];
crypto_int32 h3 = h->v[3];
crypto_int32 h4 = h->v[4];
crypto_int32 h5 = h->v[5];
crypto_int32 h6 = h->v[6];
crypto_int32 h7 = h->v[7];
crypto_int32 h8 = h->v[8];
crypto_int32 h9 = h->v[9];
crypto_int32 q;
crypto_int32 carry0;
crypto_int32 carry1;
crypto_int32 carry2;
crypto_int32 carry3;
crypto_int32 carry4;
crypto_int32 carry5;
crypto_int32 carry6;
crypto_int32 carry7;
crypto_int32 carry8;
crypto_int32 carry9;
q = (19 * h9 + (((crypto_int32) 1) << 24)) >> 25;
q = (h0 + q) >> 26;
q = (h1 + q) >> 25;
q = (h2 + q) >> 26;
q = (h3 + q) >> 25;
q = (h4 + q) >> 26;
q = (h5 + q) >> 25;
q = (h6 + q) >> 26;
q = (h7 + q) >> 25;
q = (h8 + q) >> 26;
q = (h9 + q) >> 25;
/* Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. */
h0 += 19 * q;
/* Goal: Output h-2^255 q, which is between 0 and 2^255-20. */
carry0 = h0 >> 26; h1 += carry0; h0 -= carry0 << 26;
carry1 = h1 >> 25; h2 += carry1; h1 -= carry1 << 25;
carry2 = h2 >> 26; h3 += carry2; h2 -= carry2 << 26;
carry3 = h3 >> 25; h4 += carry3; h3 -= carry3 << 25;
carry4 = h4 >> 26; h5 += carry4; h4 -= carry4 << 26;
carry5 = h5 >> 25; h6 += carry5; h5 -= carry5 << 25;
carry6 = h6 >> 26; h7 += carry6; h6 -= carry6 << 26;
carry7 = h7 >> 25; h8 += carry7; h7 -= carry7 << 25;
carry8 = h8 >> 26; h9 += carry8; h8 -= carry8 << 26;
carry9 = h9 >> 25; h9 -= carry9 << 25;
/* h10 = carry9 */
/*
* Goal: Output h0+...+2^255 h10-2^255 q, which is between 0 and 2^255-20.
* Have h0+...+2^230 h9 between 0 and 2^255-1;
* evidently 2^255 h10-2^255 q = 0.
* Goal: Output h0+...+2^230 h9.
*/
s[0] = h0 >> 0;
s[1] = h0 >> 8;
s[2] = h0 >> 16;
s[3] = (h0 >> 24) | (h1 << 2);
s[4] = h1 >> 6;
s[5] = h1 >> 14;
s[6] = (h1 >> 22) | (h2 << 3);
s[7] = h2 >> 5;
s[8] = h2 >> 13;
s[9] = (h2 >> 21) | (h3 << 5);
s[10] = h3 >> 3;
s[11] = h3 >> 11;
s[12] = (h3 >> 19) | (h4 << 6);
s[13] = h4 >> 2;
s[14] = h4 >> 10;
s[15] = h4 >> 18;
s[16] = h5 >> 0;
s[17] = h5 >> 8;
s[18] = h5 >> 16;
s[19] = (h5 >> 24) | (h6 << 1);
s[20] = h6 >> 7;
s[21] = h6 >> 15;
s[22] = (h6 >> 23) | (h7 << 3);
s[23] = h7 >> 5;
s[24] = h7 >> 13;
s[25] = (h7 >> 21) | (h8 << 4);
s[26] = h8 >> 4;
s[27] = h8 >> 12;
s[28] = (h8 >> 20) | (h9 << 6);
s[29] = h9 >> 2;
s[30] = h9 >> 10;
s[31] = h9 >> 18;
}
/*
* return 1 if f == 0
* return 0 if f != 0
*
* Preconditions:
* |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
*/
static const unsigned char zero[32];
int fe25519_iszero(const fe25519 *f)
{
int i,r=0;
unsigned char s[32];
fe25519_pack(s,f);
for(i=0;i<32;i++)
r |= (1-fe25519_c_static_equal(zero[i],s[i]));
return 1-r;
}
int fe25519_isone(const fe25519 *x)
{
return fe25519_iseq(x, &fe25519_one);
}
/*
* return 1 if f is in {1,3,5,...,q-2}
* return 0 if f is in {0,2,4,...,q-1}
*
* Preconditions:
* |f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
*/
int fe25519_isnegative(const fe25519 *f)
{
unsigned char s[32];
fe25519_pack(s,f);
return s[0] & 1;
}
int fe25519_iseq(const fe25519 *x, const fe25519 *y)
{
fe25519 t;
fe25519_sub(&t, x, y);
return fe25519_iszero(&t);
}
int fe25519_iseq_vartime(const fe25519 *x, const fe25519 *y) {
return fe25519_iseq(x, y);
}
/*
* Replace (f,g) with (g,g) if b == 1;
* replace (f,g) with (f,g) if b == 0.
*
* Preconditions: b in {0,1}.
*/
void fe25519_cmov(fe25519 *r, const fe25519 *x, unsigned char b)
{
int i;
crypto_uint32 mask = b;
mask = -mask;
for(i=0;i<10;i++) r->v[i] ^= mask & (x->v[i] ^ r->v[i]);
}
/*
* h = 1
*/
void fe25519_setone(fe25519 *h)
{
h->v[0] = 1;
h->v[1] = 0;
h->v[2] = 0;
h->v[3] = 0;
h->v[4] = 0;
h->v[5] = 0;
h->v[6] = 0;
h->v[7] = 0;
h->v[8] = 0;
h->v[9] = 0;
}
/*
* h = 0
*/
void fe25519_setzero(fe25519 *h)
{
h->v[0] = 0;
h->v[1] = 0;
h->v[2] = 0;
h->v[3] = 0;
h->v[4] = 0;
h->v[5] = 0;
h->v[6] = 0;
h->v[7] = 0;
h->v[8] = 0;
h->v[9] = 0;
}
/*
* h = -f
*
* Preconditions:
* |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
*
* Postconditions:
* |h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
*/
void fe25519_neg(fe25519 *h, const fe25519 *f)
{
crypto_int32 f0 = f->v[0];
crypto_int32 f1 = f->v[1];
crypto_int32 f2 = f->v[2];
crypto_int32 f3 = f->v[3];
crypto_int32 f4 = f->v[4];
crypto_int32 f5 = f->v[5];
crypto_int32 f6 = f->v[6];
crypto_int32 f7 = f->v[7];
crypto_int32 f8 = f->v[8];
crypto_int32 f9 = f->v[9];
crypto_int32 h0 = -f0;
crypto_int32 h1 = -f1;
crypto_int32 h2 = -f2;
crypto_int32 h3 = -f3;
crypto_int32 h4 = -f4;
crypto_int32 h5 = -f5;
crypto_int32 h6 = -f6;
crypto_int32 h7 = -f7;
crypto_int32 h8 = -f8;
crypto_int32 h9 = -f9;
h->v[0] = h0;
h->v[1] = h1;
h->v[2] = h2;
h->v[3] = h3;
h->v[4] = h4;
h->v[5] = h5;
h->v[6] = h6;
h->v[7] = h7;
h->v[8] = h8;
h->v[9] = h9;
}
unsigned char fe25519_getparity(const fe25519 *x) {
return fe25519_isnegative(x);
}
/*
* h = f + g
* Can overlap h with f or g.
*
* Preconditions:
* |f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
* |g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
*
* Postconditions:
* |h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
*/
void fe25519_add(fe25519 *h,const fe25519 *f,const fe25519 *g)
{
crypto_int32 f0 = f->v[0];
crypto_int32 f1 = f->v[1];
crypto_int32 f2 = f->v[2];
crypto_int32 f3 = f->v[3];
crypto_int32 f4 = f->v[4];
crypto_int32 f5 = f->v[5];
crypto_int32 f6 = f->v[6];
crypto_int32 f7 = f->v[7];
crypto_int32 f8 = f->v[8];
crypto_int32 f9 = f->v[9];
crypto_int32 g0 = g->v[0];
crypto_int32 g1 = g->v[1];
crypto_int32 g2 = g->v[2];
crypto_int32 g3 = g->v[3];
crypto_int32 g4 = g->v[4];
crypto_int32 g5 = g->v[5];
crypto_int32 g6 = g->v[6];
crypto_int32 g7 = g->v[7];
crypto_int32 g8 = g->v[8];
crypto_int32 g9 = g->v[9];
crypto_int32 h0 = f0 + g0;
crypto_int32 h1 = f1 + g1;
crypto_int32 h2 = f2 + g2;
crypto_int32 h3 = f3 + g3;
crypto_int32 h4 = f4 + g4;
crypto_int32 h5 = f5 + g5;
crypto_int32 h6 = f6 + g6;
crypto_int32 h7 = f7 + g7;