cryptograph 0.1.9

All you need for encrypthing your messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! tools.rs
//!
//! This module contains utility tools for working with flip-flops and LFSRs.
//!
//! # Modules
//!
//! - `flip_flop`: Contains the definition of `FlipFlop` and associated methods to manipulate individual bits.

/// The `flip_flop` module provides structures and functions for working with flip-flops.
/// A flip-flop is a 1-bit memory cell that can be set, reset, and read.
pub mod flip_flop;