plexcryptool/src/math/mod.rs
2023-05-18 01:51:30 +02:00

12 lines
329 B
Rust

/// # math module
///
/// Funcionality for math things. Contains tedious algorithms like binary exponentiation.
///
/// ___
/// Author: Christoph J. Scherr <software@cscherr.de>
/// License: MIT
/// Source: <https://git.cscherr.de/PlexSheep/plexcryptool/>
pub mod modexp;
pub mod pm1;
pub mod modred;
pub mod gallois;