summaryrefslogtreecommitdiffstats
path: root/vendor/crypto-bigint/src/uint/mul_mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/crypto-bigint/src/uint/mul_mod.rs')
-rw-r--r--vendor/crypto-bigint/src/uint/mul_mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/crypto-bigint/src/uint/mul_mod.rs b/vendor/crypto-bigint/src/uint/mul_mod.rs
index 0916ede44..c46274a4d 100644
--- a/vendor/crypto-bigint/src/uint/mul_mod.rs
+++ b/vendor/crypto-bigint/src/uint/mul_mod.rs
@@ -3,7 +3,7 @@
use crate::{Limb, Uint, WideWord, Word};
impl<const LIMBS: usize> Uint<LIMBS> {
- /// Computes `self * rhs mod p` in constant time for the special modulus
+ /// Computes `self * rhs mod p` for the special modulus
/// `p = MAX+1-c` where `c` is small enough to fit in a single [`Limb`].
/// For the modulus reduction, this function implements Algorithm 14.47 from
/// the "Handbook of Applied Cryptography", by A. Menezes, P. van Oorschot,