2 stable releases

new 1.1.0 Apr 16, 2024
1.0.0 Oct 10, 2023

#1087 in Math

Download history 3928/week @ 2023-12-23 3741/week @ 2023-12-30 4333/week @ 2024-01-06 5600/week @ 2024-01-13 5789/week @ 2024-01-20 6445/week @ 2024-01-27 7261/week @ 2024-02-03 6575/week @ 2024-02-10 6929/week @ 2024-02-17 7039/week @ 2024-02-24 8097/week @ 2024-03-02 9493/week @ 2024-03-09 10897/week @ 2024-03-16 9991/week @ 2024-03-23 12985/week @ 2024-03-30 9382/week @ 2024-04-06

45,722 downloads per month
Used in 11 crates (2 directly)

CC0 license

61KB
1.5K SLoC

Aurora modexp implementation

What this crate is

This crate is an efficient implementation of the EVM modexp precompile. This crate exposes a single public function

pub fn modexp(base: &[u8], exp: &[u8], modulus: &[u8]) -> Vec<u8>

This function takes the base, exponent and modulus as big-endian encoded bytes and returns the result in big-endian as well.

This crate is meant to be an efficient implementation, using as little memory as possible (for example, it does not copy the exponent slice). The exponentiation is done using the "binary method". The multiplication steps within the exponentiation use "Montgomery multiplication". In the case of even modulus, Montgomery multiplication does not apply directly. However we can reduce the problem to one involving an odd modulus and one where the modulus is a power of two. These two sub-problems can be solved efficiently (the former using Montgomery multiplication, the latter the modular arithmetic is trivial on a binary computer), then the results are combined using the Chinese remainder theorem.

The primary academic references for this implementation are:

  1. Analyzing and Comparing Montgomery Multiplication Algorithms
  2. Montgomery Reduction with Even Modulus
  3. A Cryptographic Library for the Motorola DSP56000
  4. The Art of Computer Programming Volume 2

What this crate is NOT

This crate is not a general purpose big integer library. If you need anything other than modexp, then you should use something like num-bigint or ibig.

Dependencies

~1MB
~19K SLoC