some code documentation
This commit is contained in:
parent
0e6fe6eda7
commit
02927ebdc6
|
@ -1,8 +1,8 @@
|
||||||
#![allow(dead_code)]
|
/// # binary module
|
||||||
/// binary functions
|
|
||||||
///
|
///
|
||||||
/// This module contains some functions that manipulate binary values.
|
/// This module contains some functions that manipulate binary values.
|
||||||
///
|
///
|
||||||
|
/// ___
|
||||||
/// Author: Christoph J. Scherr <software@cscherr.de>
|
/// Author: Christoph J. Scherr <software@cscherr.de>
|
||||||
/// License: MIT
|
/// License: MIT
|
||||||
/// Source: <https://git.cscherr.de/PlexSheep/plexcryptool/>
|
/// Source: <https://git.cscherr.de/PlexSheep/plexcryptool/>
|
||||||
|
|
|
@ -1,11 +1,17 @@
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
#![warn(clippy::missing_docs_in_private_items)]
|
#![warn(clippy::missing_docs_in_private_items)]
|
||||||
//! # various tools for use in cryptology contexts
|
|
||||||
//!
|
//!
|
||||||
//! This is a mixed rust/python library that also offers an executable.
|
//! This is a mixed rust/python library that also offers an executable.
|
||||||
//! The intended usage is the solving of tasks for cryptology and maybe math, in the context of a
|
//! The intended usage is the solving of tasks for cryptology and maybe math, in the context of a
|
||||||
|
//! # various tools for use in cryptology contexts
|
||||||
//! university degree. I wrote this for cryptology at DHBW Mannheim.
|
//! university degree. I wrote this for cryptology at DHBW Mannheim.
|
||||||
//!
|
//!
|
||||||
|
//! ## main function
|
||||||
|
//! This project contains an executable, see [main.rs](main.rs)
|
||||||
|
//!
|
||||||
|
//! ## lib module
|
||||||
|
//! This project contains is a library, see [lib.rs](lib.rs).
|
||||||
|
//! Note that this library offers Python bindings using [PyO3](pyo3.rs)
|
||||||
//! ___
|
//! ___
|
||||||
//! Author: Christoph J. Scherr <software@cscherr.de>
|
//! Author: Christoph J. Scherr <software@cscherr.de>
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -6,6 +6,12 @@
|
||||||
//! # various tools for use in cryptology contexts
|
//! # various tools for use in cryptology contexts
|
||||||
//! university degree. I wrote this for cryptology at DHBW Mannheim.
|
//! university degree. I wrote this for cryptology at DHBW Mannheim.
|
||||||
//!
|
//!
|
||||||
|
//! ## main function
|
||||||
|
//! This project contains an executable, see [main.rs](main.rs)
|
||||||
|
//!
|
||||||
|
//! ## lib module
|
||||||
|
//! This project contains is a library, see [lib.rs](lib.rs).
|
||||||
|
//! Note that this library offers Python bindings using [PyO3](pyo3.rs)
|
||||||
//! ___
|
//! ___
|
||||||
//! Author: Christoph J. Scherr <software@cscherr.de>
|
//! Author: Christoph J. Scherr <software@cscherr.de>
|
||||||
//!
|
//!
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
/// # math module
|
/// # math module
|
||||||
///
|
///
|
||||||
/// funcionality for math things. Contains tedious algorithms like binary exponentiation.
|
/// 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 modexp;
|
||||||
|
|
Loading…
Reference in New Issue