plexcryptool/src/math/mod.rs

13 lines
329 B
Rust
Raw Normal View History

2023-05-08 01:20:28 +02:00
/// # math module
///
2023-05-08 01:30:28 +02:00
/// 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/>
2023-05-08 01:20:28 +02:00
pub mod modexp;
2023-05-13 16:33:49 +02:00
pub mod pm1;
2023-05-16 13:59:15 +02:00
pub mod modred;
2023-05-18 01:51:30 +02:00
pub mod gallois;