- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for BenchmarkInvert (0.75 sec)
-
lib/fips140/v1.0.0.zip
new(Element).One() y := new(Element).Add(x, x) b.ResetTimer() for i := 0; i < b.N; i++ { x.Multiply(x, y) } } func BenchmarkSquare(b *testing.B) { x := new(Element).Add(feOne, feOne) b.ResetTimer() for i := 0; i < b.N; i++ { x.Square(x) } } func BenchmarkInvert(b *testing.B) { x := new(Element).Add(feOne, feOne) b.ResetTimer() for i := 0; i < b.N; i++ { x.Invert(x) } } func BenchmarkMult32(b *testing.B) { x := new(Element).One() b.ResetTimer() for i := 0; i < b.N; i++ { x.Mult32(x, 0xaa42aa42) } } g...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)