A Rust crate for Base64 string.
Add this to your Cargo.toml
:
toml
[dependencies]
base64-string-rs = "<<version>>"
Base64String is a string type in Base64 format that contains meta-information about the encoding.
```rust use base64stringrs::Base64StringFactory;
let str = "0123ABC"; let factory = Base64StringFactory::default(); let encoded = factory.encodefromstring(str); println!("encoded = {}", encoded); // encoded = Base64String(value = MDEyM0FCQw, urlsafe = false, padding = false) let decoded = encoded.decodeto_string().unwrap(); println!("decoded = {}", decoded); // 0123ABC ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.