Skip to main content
This is unreleased documentation for the main (development) branch of crypto-glue.

base64/read/
mod.rs

1//! Implementations of `io::Read` to transparently decode base64.
2mod decoder;
3pub use self::decoder::DecoderReader;
4
5#[cfg(test)]
6mod decoder_tests;