#elliptic-curve #factorization #modular-arithmetic #prime-factors #128-bit

bin+lib prime_factorization

Prime factorization up to 128 bit integers

6 stable releases

new 1.0.5 Dec 6, 2024
1.0.4 Jun 10, 2023
1.0.3 Nov 19, 2022
1.0.2 Oct 13, 2022
1.0.1 Aug 12, 2022

#195 in Math

Download history 266/week @ 2024-08-19 242/week @ 2024-08-26 208/week @ 2024-09-02 268/week @ 2024-09-09 176/week @ 2024-09-16 222/week @ 2024-09-23 172/week @ 2024-09-30 52/week @ 2024-10-07 73/week @ 2024-10-14 48/week @ 2024-10-21 80/week @ 2024-10-28 99/week @ 2024-11-04 62/week @ 2024-11-11 73/week @ 2024-11-18 65/week @ 2024-11-25 204/week @ 2024-12-02

406 downloads per month
Used in 3 crates

CC0 license

100KB
2K SLoC

Prime factorization

main crate

This is a program to decompose a natural number N, up to u128::MAX, into a product of its prime factors. Based on the fundamental theorem of arithmetic, every natural number larger than one is either a prime itself or can be represented as a product of primes that is unique up to the order of these prime numbers.

The factorization algorithm consists of trial division with the first one thousand primes, Fermat's factorization method, and Lenstra elliptic-curve factorization using projective coordinates with Suyama's parametrization. After Fermat's method and before advancing to the elliptic-curve factorization step, the possible primality of the number is checked using either the Miller-Rabin or strong Baillie-PSW primality test, depending on the magnitude of the number. The latter test is not deterministic in the number range it's used here (up to 128 bits) but there are no known counterexamples.

Install

To install as a dependency (library target) for another program, add the following to your Cargo.toml

[dependencies]
prime_factorization = "1.0.5"

For the binary target, run the command cargo install prime_factorization and ensure that the installation location is in your PATH (i.e., Rust toolchain properly configured).

Use

Use the library as follows

use prime_factorization::Factorization;

// Factorize the following semiprime
let num: u128 = 3_746_238_285_234_848_709_827;

let factor_repr = Factorization::run(num);

// Check that the returned factors are correct
assert_eq!(factor_repr.factors, vec![103_979, 36_028_797_018_963_913]);

Note that all integers from 2 to 2^128 - 1 can be factorized, but the used integer type must implement (alongside a few others) the trait From<u32>.

Sometimes it might be enough to check whether a particular number is a prime

use prime_factorization::Factorization;

let num: u128 = 332_306_998_946_228_968_225_951_765_070_086_139;

// Use the `is_prime` convenience field
assert_eq!(Factorization::run(num).is_prime, true);

If the binary target was installed, the CLI can be used as follows

prime_factorization num [-p | --pretty]

where the argument num is the mandatory natural number and the option -p or --pretty is a print flag which, when given, causes the output to be in the proper factor representation format $$p_1^{k_1} * ... * p_m^{k_m}$$. Without the flag, the output only lists all the prime factors from smallest to largest.

Remarks

  • Elliptic-curve factorization must use multithreading to be efficient. The thread count should be set to a value of at least two and preferably below the number of CPU cores to optimize performance. In terms of performance, a lower value (2-5) seems to be the best, but large 128 bit semiprimes could be factorized faster with a larger thread count based on benchmarking. The thread count can be changed by the MAX_THREADS_ constants in the factor module.

  • Miller-Rabin and Baillie-PSW primality tests are probabilistic but do not contain counterexamples in the number range this program uses. Elliptic-curve factorization uses random initial points on the curves, which can cause some deviation in execution times.

License

This program is licensed under the CC0v1.

Dependencies

~1MB
~23K SLoC