cipher-utils 0.3.0

A collection of various text and cryptographic analysis utilities for Rust.
Documentation
1
2
3
4
5
6
7
use crate::alphabet::Alphabet;

pub struct Base64;

lazy_static::lazy_static! {
    pub static ref ALPHABET: Alphabet = Alphabet::of_cased("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/");
}