A reimplementation of the base64 and hexadecimal codecs from libsodium and libhydrogen in Rust.
no_std
friendly.```rust use ct_codecs::{Base64UrlSafe, Decoder, Encoder};
let encoded = Base64UrlSafe::encodetostring(x)?; let decoded = Base64UrlSafe::decodetovec(encoded, None)?; ```