Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for 440 (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

    highBits88 implements HighBits from FIPS 204 for γ2 = (q - 1) / 88. func highBits88(x uint32) byte { // Like highBits32, this is exhaustively tested in TestDecompose. r1 := (x + 127) >> 7 r1 = (r1*11275 + (1 << 23)) >> 24 r1 = constantTimeSelectEq(r1, 44, 0, r1) return byte(r1) } // decompose88 implements Decompose from FIPS 204 for γ2 = (q - 1) / 88. // // r1 is in [0, 43]. func decompose88(r fieldElement) (r1 byte, r0 int32) { x := fieldFromMontgomery(r) r1 = highBits88(x) // r - r1 * (2 * γ2) mod±...
    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