//! CESR Base64 codec.
//!
//! URL-safe Base64 encode/decode for CESR integer and binary fields: the
//! canonical alphabet + reverse table ([`alphabet`]), the integer codec
//! ([`int`]), byte-stream encoding ([`binary`]), and character-set validation
//! ([`charset`]).
use ;
/// The canonical URL-safe Base64 alphabet, reverse table, and char↔index helpers.
/// Base64 encoding functions for CESR binary data.
/// URL-safe Base64 character-set validation.
/// Error types for Base64 decode/encode operations.
/// Base64 codec for CESR integers (both directions).
pub use encode_binary;
pub use is_b64_url_safe_charset;
pub use ;