- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for ExpShortVarTime (0.82 sec)
-
lib/fips140/v1.1.0-rc1.zip
out.assign(not(ctEq(k, 0)), tmp) } } return out.montgomeryReduction(m) } // ExpShortVarTime calculates out = x^e mod m. // // The output will be resized to the size of m and overwritten. x must already // be reduced modulo m. This leaks the exponent through timing side-channels. // // m must be odd, or ExpShortVarTime will panic. func (out *Nat) ExpShortVarTime(x *Nat, e uint, m *Modulus) *Nat { if !m.odd { panic("bigmod: modulus for ExpShortVarTime must be odd") } // For short exponents, precomputing a table and...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)