Skip to content

Commit d38cd5d

Browse files
committed
Removing non-used fp functions.
1 parent 6e9b9b2 commit d38cd5d

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

math/fp448/fp.go

-27
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
package fp448
33

44
import (
5-
"crypto/subtle"
65
"errors"
76

87
"github.com/cloudflare/circl/internal/conv"
@@ -26,15 +25,6 @@ var p = Elt{
2625
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
2726
0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
2827
}
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-
}
3828

3929
// P returns the prime modulus 2^448-2^224-1.
4030
func P() Elt { return p }
@@ -58,23 +48,6 @@ func IsOne(x *Elt) bool { Modp(x); return *x == Elt{1} }
5848
// Parity returns the last bit of x.
5949
func Parity(x *Elt) int { Modp(x); return int(x[0] & 1) }
6050

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-
7851
// SetOne assigns x=1.
7952
func SetOne(x *Elt) { *x = Elt{1} }
8053

0 commit comments

Comments
 (0)