Simple, small and fast, dependency free base64 encoder/decoder.
Explore the docs »
Report Bug
·
Request Feature
Table of Contents
I have created a library for people who simply need to encode and decode data to and from Base64 with a straightforward API. The purpose of this library is to reduce the time between when a person discovers the library and when they start using it. Additionally, the aim is to avoid burdening the project with extra dependencies and increasing compilation time.
Just add new dependencie in your Cargo.toml file.
toml
[dependencies]
easy_base64 = "0.1"
```rust use easy_base64::{decode, encode};
fn main() { let decodedb64 = decode("U3U=".tostring().asbytes()); println!("Decoded: {}", String::fromutf8(decoded_b64).unwrap());
let encoded_b64 = encode("Su".to_string().as_bytes());
println!("Encoded: {}", encoded_b64);
} ```
For more examples, please refer to the Documentation
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT License. See LICENSE.txt
for more information.
Bogdan Lipovtsev - megafreelancer2012@gmail.com
Project Link: https://github.com/zaqxsw-dev/easy_base64