Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for fieldMontgomeryAddMu (0.15 seconds)

  1. lib/fips140/v1.26.0.zip

    save a // fieldReduceOnce after the subtraction. func fieldMontgomeryMulSu(a, b, c fieldElement) fieldElement { x := uint64(a) * uint64(b-c+q) return fieldMontgomeryReduc(x) } // fieldMontgomeryAddMu returns a * b + c * d. This operation is fused to save // a fieldReduceOnce and a fieldReduce. func fieldMontgomeryAddMu(a, b, c, d fieldElement) fieldElement { x := uint64(a) * uint64(b) x += uint64(c) * uint64(d) return fieldMontgomeryReduc(x) } const n = 256 // ringElement is a polynomial, an element...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
Back to Top