base_xx 0.9.0

Base XX encoding
Documentation
/// Base36 encoding implementation (0-9 and A-Z).
pub mod base36;

/// Base58 encoding implementation (Bitcoin-style).
pub mod base58;

/// Base64 encoding implementation (RFC 4648).
pub mod base64;

/// Hexadecimal encoding implementation (0-9 and A-F).
pub mod hex;

/// `uuencode` implementation.
pub mod uuencode;

pub use base36::Base36;
pub use base58::Base58;
pub use base64::Base64;
pub use hex::Hex;
pub use uuencode::Uuencode;