mirror of
https://github.com/timvisee/ffsend.git
synced 2025-10-03 17:49:15 +02:00
Expose base64 crypto config types
This commit is contained in:
parent
8748d79934
commit
c3e82650f9
1 changed files with 7 additions and 1 deletions
|
@ -6,7 +6,13 @@
|
||||||
|
|
||||||
extern crate base64;
|
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,
|
/// Encode the given byte slice using base64,
|
||||||
/// in an URL-safe manner without padding.
|
/// in an URL-safe manner without padding.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue