//! A simple module for encoding or decoding a base64 string from or to a
//! byte array.
//!
//! This module uses an URL-safe scheme, and doesn't add additional padding
//! to the encoded strings.
extern crate base64;
pub use ;
/// Encode the given byte slice using base64,
/// in an URL-safe manner without padding.
/// Decode the given string as base64.
/// Standard and URL-safe character sets are both supported,
/// padding is optional.