use crate::Uint; pub(crate) const fn add_montgomery_form( a: &Uint, b: &Uint, modulus: &Uint, ) -> Uint { a.add_mod(b, modulus) }