Expose base64 crypto config types

This commit is contained in:
timvisee 2018-03-29 01:07:32 +02:00
parent 8748d79934
commit c3e82650f9
No known key found for this signature in database
GPG key ID: 109CBA0BF74036C2

View file

@ -6,7 +6,13 @@
extern crate base64;
pub use self::base64::{Config, DecodeError};
pub use self::base64::{
CharacterSet,
Config,
DecodeError,
LineEnding,
LineWrap,
};
/// Encode the given byte slice using base64,
/// in an URL-safe manner without padding.