@@ -18,20 +18,22 @@ use core::fmt;
1818use core:: ops:: Mul ;
1919use subtle:: { Choice , ConditionallySelectable , ConstantTimeEq } ;
2020
21- // Low order points on Curve448 and it's twist
22- const LOW_A : MontgomeryPoint = MontgomeryPoint ( [
21+ /// First low order point on Curve448 and it's twist
22+ pub const LOW_A : MontgomeryPoint = MontgomeryPoint ( [
2323 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
2424 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
2525 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
2626 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
2727] ) ;
28- const LOW_B : MontgomeryPoint = MontgomeryPoint ( [
28+ /// Second low order point on Curve448 and it's twist
29+ pub const LOW_B : MontgomeryPoint = MontgomeryPoint ( [
2930 0x01 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
3031 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
3132 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
3233 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
3334] ) ;
34- const LOW_C : MontgomeryPoint = MontgomeryPoint ( [
35+ /// Third low order point on Curve448 and it's twist
36+ pub const LOW_C : MontgomeryPoint = MontgomeryPoint ( [
3537 0xfe , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
3638 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xfe , 0xff , 0xff , 0xff ,
3739 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
0 commit comments