2
2
package fp448
3
3
4
4
import (
5
- "crypto/subtle"
6
5
"errors"
7
6
8
7
"github.com/cloudflare/circl/internal/conv"
@@ -26,15 +25,6 @@ var p = Elt{
26
25
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
27
26
0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
28
27
}
29
- var pMinusOneDivTwo = Elt {
30
- 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
31
- 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
32
- 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x00 ,
33
- 0x00 , 0x00 , 0x00 , 0x80 , 0xff , 0xff , 0xff , 0xff ,
34
- 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
35
- 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff ,
36
- 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0xff , 0x7f ,
37
- }
38
28
39
29
// P returns the prime modulus 2^448-2^224-1.
40
30
func P () Elt { return p }
@@ -58,23 +48,6 @@ func IsOne(x *Elt) bool { Modp(x); return *x == Elt{1} }
58
48
// Parity returns the last bit of x.
59
49
func Parity (x * Elt ) int { Modp (x ); return int (x [0 ] & 1 ) }
60
50
61
- func isLEQ (x , y * Elt ) int {
62
- i := Size - 1
63
- for i > 0 && x [i ] == y [i ] {
64
- i --
65
- }
66
- return subtle .ConstantTimeLessOrEq (int (x [i ]), int (y [i ]))
67
- }
68
-
69
- // Abs returns |x| where |x| = x if 0 <= x <= (p-1)/2; otherwise |x|=-x mod p.
70
- func Abs (x * Elt ) {
71
- var y Elt
72
- Modp (x )
73
- Neg (& y , x )
74
- b := isLEQ (x , & pMinusOneDivTwo )
75
- Cmov (x , & y , uint (1 - b ))
76
- }
77
-
78
51
// SetOne assigns x=1.
79
52
func SetOne (x * Elt ) { * x = Elt {1 } }
80
53
0 commit comments