Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for 76543210 (0.06 seconds)

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

    const barrettShift = 16 // log₂(2¹⁶) quotient := (uint32(b) * barrettMultiplier) >> barrettShift remainder := uint32(b) - quotient*5 return fieldSubToMontgomery(2, remainder), true case 4: // Return z = 4 − b, which maps from // // b = ( 8, 7, 6, 5, 4, 3, 2, 1, 0 ) // // to // // z = ( −4, -3, -2, -1, 0, 1, 2, 3, 4 ) // if b > 8 { return 0, false } return fieldSubToMontgomery(4, uint32(b)), true default: panic("internal error: unsupported η") } } // power2Round implements Power2Round from FIPS 204....
    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