CT-Codecs

A reimplementation of the base64 and hexadecimal codecs from libsodium and libhydrogen in Rust.

API documentation

Example usage

```rust use ct_codecs::{Base64UrlSafe, Decoder, Encoder};

let encoded = Base64UrlSafe::encodetostring(x).unwrap(); let decoded = Base64UrlSafe::decodetovec(encoded, None).unwrap(); ```