Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. lib/fips140/v1.1.0-rc1.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 Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
Back to Top