base64-ng 1.2.0

no_std-first Base64 encoding and decoding with strict APIs and a security-heavy release process
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Stack-backed and owned buffer wrappers.

mod decoded;
mod encoded;
#[cfg(feature = "alloc")]
mod secret;
#[cfg(feature = "alloc")]
mod secret_conversions;

pub use decoded::{DecodedBuffer, ExposedDecodedArray};
pub use encoded::{EncodedBuffer, ExposedEncodedArray};
#[cfg(feature = "alloc")]
pub use secret::{ExposedSecretString, ExposedSecretVec, SecretBuffer};