12 lines
329 B
Rust
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;
|