Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for fieldMulSub (0.06 sec)

  1. lib/fips140/v1.1.0-rc1.zip

    barrettMultiplier) >> barrettShift) return fieldReduceOnce(uint16(a - quotient*q)) } func fieldMul(a, b fieldElement) fieldElement { x := uint32(a) * uint32(b) return fieldReduce(x) } // fieldMulSub returns a * (b - c). This operation is fused to save a // fieldReduceOnce after the subtraction. func fieldMulSub(a, b, c fieldElement) fieldElement { x := uint32(a) * uint32(b-c+q) return fieldReduce(x) } // fieldAddMul returns a * b + c * d. This operation is fused to save a // fieldReduceOnce and a...
    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