Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InverseVarTime (0.09 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    k != 0 { out.montgomeryMul(out, xR, m) } } return out.montgomeryReduction(m) } // InverseVarTime calculates x = a⁻¹ mod m and returns (x, true) if a is // invertible. Otherwise, InverseVarTime returns (x, false) and x is not // modified. // // a must be reduced modulo m, but doesn't need to have the same size. The // output will be resized to the size of m and overwritten. // //go:norace func (x *Nat) InverseVarTime(a *Nat, m *Modulus) (*Nat, bool) { u, A, err := extendedGCD(a, m.nat) if err != nil...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    k != 0 { out.montgomeryMul(out, xR, m) } } return out.montgomeryReduction(m) } // InverseVarTime calculates x = a⁻¹ mod m and returns (x, true) if a is // invertible. Otherwise, InverseVarTime returns (x, false) and x is not // modified. // // a must be reduced modulo m, but doesn't need to have the same size. The // output will be resized to the size of m and overwritten. // //go:norace func (x *Nat) InverseVarTime(a *Nat, m *Modulus) (*Nat, bool) { u, A, err := extendedGCD(a, m.nat) if err != nil...
    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