dashu-int 0.6.0

Arbitrary-precision integer math library for Rust, balancing ergonomics and efficiency. Provides UBig and IBig (unsigned and signed), with small values inlined on the stack. Efficient arithmetic, modular arithmetic, and number theory (pow, ilog, gcd, gcd_ext); two's-complement bit operations; parsing and formatting in base 2-36; optional serde, rand, num-traits, rkyv, and zeroize.
Documentation
//! Modular exponentiation in Montgomery form.

// XXX: the Almost-Montgomery-Multiplication (AMM) technique from Gueron, "Efficient Software
// Implementations of Modular Exponentiation" (https://eprint.iacr.org/2011/239.pdf), could be
// used here in the future to speed up exponentiation by keeping values in a relaxed range and
// skipping per-step reductions inside the sliding window. Not applied yet — measured to give only
// a marginal gain against the word-by-word REDC used in this crate.

use crate::ubig::UBig;

use super::repr::{Montgomery, MontgomeryInner};

impl<'a> Montgomery<'a> {
    /// Exponentiation.
    ///
    /// If you want to use a negative exponent, first use [`inv()`](Self::inv) to convert
    /// the base to its inverse, and then call this method.
    ///
    /// # Examples
    ///
    /// ```
    /// # use dashu_int::{monty::MontgomeryRepr, UBig};
    /// // A Mersenne prime.
    /// let p = UBig::from(2u8).pow(607) - UBig::ONE;
    /// let ring = MontgomeryRepr::new(p.clone());
    /// // Fermat's little theorem: a^(p-1) = 1 (mod p)
    /// let a = ring.reduce(123);
    /// assert_eq!(a.pow(&(p - UBig::ONE)), ring.reduce(1));
    /// ```
    #[inline]
    pub fn pow(&self, exp: &UBig) -> Montgomery<'a> {
        match self.repr() {
            MontgomeryInner::Single(raw, ring) => {
                Montgomery::from_single(single::pow(ring, *raw, exp), ring)
            }
            MontgomeryInner::Double(raw, ring) => {
                Montgomery::from_double(double::pow(ring, *raw, exp), ring)
            }
            MontgomeryInner::Large(raw, ring) => {
                Montgomery::from_large(large::pow(ring, raw, exp), ring)
            }
        }
    }
}

macro_rules! impl_monty_pow_for_primitive {
    ($ns:ident, $ring:ident, $raw:ty) => {
        mod $ns {
            use super::super::repr::$ring;
            use crate::{
                arch::word::Word,
                primitive::{split_dword, WORD_BITS},
                repr::TypedReprRef::*,
                ubig::UBig,
            };
            use num_modular::Reducer;

            /// The Montgomery form of 1.
            #[inline]
            fn one(ring: &$ring) -> $raw {
                ring.0.transform(1)
            }

            #[inline]
            pub(super) fn pow_word(ring: &$ring, raw: $raw, exp: Word) -> $raw {
                match exp {
                    0 => one(ring),
                    1 => raw, // no-op
                    2 => ring.0.sqr(raw),
                    _ => {
                        let bits = WORD_BITS - 1 - exp.leading_zeros();
                        pow_helper(ring, raw, raw, exp, bits)
                    }
                }
            }

            /// lhs^(2^bits) * rhs^exp[..bits] (in the modulo ring)
            #[inline]
            fn pow_helper(ring: &$ring, lhs: $raw, rhs: $raw, exp: Word, mut bits: u32) -> $raw {
                let mut res = lhs;
                while bits > 0 {
                    res = ring.0.sqr(res);
                    bits -= 1;
                    if exp & (1 << bits) != 0 {
                        res = ring.0.mul(&res, &rhs);
                    }
                }
                res
            }

            /// Exponentiation.
            #[inline]
            pub(super) fn pow(ring: &$ring, raw: $raw, exp: &UBig) -> $raw {
                match exp.repr() {
                    RefSmall(dword) => {
                        let (lo, hi) = split_dword(dword);
                        if hi == 0 {
                            pow_word(ring, raw, lo)
                        } else {
                            let res = pow_word(ring, raw, hi);
                            pow_helper(ring, res, raw, lo, WORD_BITS)
                        }
                    }
                    RefLarge(words) => pow_nontrivial(ring, raw, words),
                }
            }

            fn pow_nontrivial(ring: &$ring, raw: $raw, exp_words: &[Word]) -> $raw {
                let mut n = exp_words.len() - 1;
                let mut res = pow_word(ring, raw, exp_words[n]); // apply the top word
                while n != 0 {
                    n -= 1;
                    res = pow_helper(ring, res, raw, exp_words[n], WORD_BITS);
                }
                res
            }
        }
    };
}
impl_monty_pow_for_primitive!(single, MontgomerySingleRepr, Word);
impl_monty_pow_for_primitive!(double, MontgomeryDoubleRepr, crate::arch::word::DoubleWord);

mod large {
    use super::super::mul::{
        mul_memory_requirement, mul_normalized_large, sqr_in_place_large, sqr_normalized_large,
    };
    use super::super::repr::{MontgomeryLargeRepr, MontgomeryLargeVal};
    use crate::buffer::Buffer;
    use crate::ubig::UBig;
    use crate::{
        arch::word::Word,
        error::panic_allocate_too_much,
        math,
        memory::{self, MemoryAllocation},
        primitive::{double_word, split_dword, PrimitiveUnsigned, WORD_BITS, WORD_BITS_USIZE},
    };
    use dashu_base::BitTest; // for UBig::bit_len

    pub(super) fn pow(
        ring: &MontgomeryLargeRepr,
        raw: &MontgomeryLargeVal,
        exp: &UBig,
    ) -> MontgomeryLargeVal {
        if exp.is_zero() {
            MontgomeryLargeVal::one(ring)
        } else if exp.is_one() {
            raw.clone()
        } else {
            pow_nontrivial(ring, raw, exp)
        }
    }

    fn pow_nontrivial(
        ring: &MontgomeryLargeRepr,
        raw: &MontgomeryLargeVal,
        exp: &UBig,
    ) -> MontgomeryLargeVal {
        let n = ring.modulus.len();
        let window_len = choose_pow_window_len(exp.bit_len());

        // Precomputed table of small odd powers up to 2^window_len, starting from raw^3.
        #[allow(clippy::redundant_closure)]
        let table_words = ((1usize << (window_len - 1)) - 1)
            .checked_mul(n)
            .unwrap_or_else(|| panic_allocate_too_much());

        let memory_requirement = memory::add_layout(
            memory::array_layout::<Word>(table_words),
            mul_memory_requirement(ring),
        );
        let mut allocation = MemoryAllocation::new(memory_requirement);
        let mut memory = allocation.memory();
        let (table, mut memory) = memory.allocate_slice_fill::<Word>(table_words, 0);

        // val = raw^2
        let prod = sqr_normalized_large(ring, &raw.0, &mut memory);
        let mut val = MontgomeryLargeVal(Buffer::from(prod).into_boxed_slice());

        // raw^(2*i+1) = raw^(2*i-1) * val
        for i in 1..(1 << (window_len - 1)) {
            let (prev, cur) = if i == 1 {
                (raw.0.as_ref(), &mut table[0..n])
            } else {
                let (prev, cur) = table[(i - 2) * n..i * n].split_at_mut(n);
                (&*prev, cur)
            };
            cur.copy_from_slice(mul_normalized_large(ring, prev, &val.0, &mut memory));
        }

        let exp_words = exp.as_words();
        // We already have raw^2 in val.
        // exp.bit_len() >= 2 because exp >= 2.
        let mut bit = exp.bit_len() - 2;

        loop {
            // val = raw ^ exp[bit..] ignoring the lowest bit
            let word_idx = bit / WORD_BITS_USIZE;
            let bit_idx = (bit % WORD_BITS_USIZE) as u32;
            let cur_word = exp_words[word_idx];
            if cur_word & (1 << bit_idx) != 0 {
                let next_word = if word_idx == 0 {
                    0
                } else {
                    exp_words[word_idx - 1]
                };
                // Get a window of window_len bits, with top bit of 1.
                let (mut window, _) = split_dword(
                    double_word(next_word, cur_word) >> (bit_idx + 1 + WORD_BITS - window_len),
                );
                window &= math::ones_word(window_len);
                // Shift right to make the window odd.
                let num_bits = window_len - window.trailing_zeros();
                window >>= window_len - num_bits;
                // val := val^2^(num_bits-1)
                for _ in 0..num_bits - 1 {
                    sqr_in_place_large(ring, &mut val, &mut memory);
                }
                bit -= (num_bits as usize) - 1;
                // Now val = raw ^ exp[bit..] ignoring the num_bits lowest bits.
                // val = val * raw^window from precomputed table.
                debug_assert!(window & 1 == 1);
                let entry_idx = (window >> 1) as usize;
                let entry = if entry_idx == 0 {
                    &raw.0
                } else {
                    &table[(entry_idx - 1) * n..entry_idx * n]
                };
                let prod = mul_normalized_large(ring, &val.0, entry, &mut memory);
                val.0.copy_from_slice(prod);
            }
            // val = raw ^ exp[bit..]
            if bit == 0 {
                break;
            }
            bit -= 1;
            sqr_in_place_large(ring, &mut val, &mut memory);
        }
        val
    }

    /// Choose the optimal window size for n-bit exponents.
    /// 1 <= window_size < min(WORD_BITS, usize::BIT_SIZE) inclusive.
    fn choose_pow_window_len(n: usize) -> u32 {
        let cost = |window_size| (1usize << (window_size - 1)) - 1 + n / (window_size as usize + 1);
        let mut window_size = 1;
        let mut c = cost(window_size);
        while window_size + 1 < WORD_BITS.min(usize::BIT_SIZE) {
            let c2 = cost(window_size + 1);
            if c <= c2 {
                break;
            }
            window_size += 1;
            c = c2;
        }
        window_size
    }
}