advanced-algorithms 0.1.4

A comprehensive library of advanced algorithms for numerical analysis, linear algebra, cryptography, optimization, and graph theory
Documentation
1
2
3
4
5
6
7
8
9
10
//! Number theory and cryptography algorithms
//!
//! This module provides implementations of algorithms for:
//! - Primality testing (Miller-Rabin)
//! - Greatest common divisor and modular arithmetic (Extended Euclidean)
//! - Pseudo-random number generation (Mersenne Twister)

pub mod miller_rabin;
pub mod extended_euclidean;
pub mod mersenne_twister;