Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestMultiplyDistribu (0.52 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    within the expected bit size bounds // after a light reduction. func isInBounds(x *Element) bool { return bits.Len64(x.l0) <= 52 && bits.Len64(x.l1) <= 52 && bits.Len64(x.l2) <= 52 && bits.Len64(x.l3) <= 52 && bits.Len64(x.l4) <= 52 } func TestMultiplyDistribu(t *testing.T) { multiplyDistributesO := func(x, y, z Element) bool { // Compute t1 = (x+y)*z t1 := new(Element) t1.Add(&x, &y) t1.Multiply(t1, &z) // Compute t2 = x*z + y*z t2 := new(Element) t3 := new(Element) t2.Multiply(&x, &z) t3.Multiply(&y,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    within the expected bit size bounds // after a light reduction. func isInBounds(x *Element) bool { return bits.Len64(x.l0) <= 52 && bits.Len64(x.l1) <= 52 && bits.Len64(x.l2) <= 52 && bits.Len64(x.l3) <= 52 && bits.Len64(x.l4) <= 52 } func TestMultiplyDistribu(t *testing.T) { multiplyDistributesO := func(x, y, z Element) bool { // Compute t1 = (x+y)*z t1 := new(Element) t1.Add(&x, &y) t1.Multiply(t1, &z) // Compute t2 = x*z + y*z t2 := new(Element) t3 := new(Element) t2.Multiply(&x, &z) t3.Multiply(&y,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top