chromium-base64-rs 0.1.0

Pure rust implementation of chromium's btoa and atob
Documentation
  • Coverage
  • 71.43%
    5 out of 7 items documented1 out of 5 items with examples
  • Size
  • Source code size: 5.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.21 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • ivanhrabcak/chromium-base64-rs
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ivanhrabcak

chromium-base64-rs

Pure rust implementation of chromium's btoa and atob

Dependency

chromium-base64-rs = "0.1.0"

Example

Here's a encoding and decoding example:

let base64_encoded_string = base64_encode_to_string("Hello World!".as_bytes());

let decoded_string = base64_decode_to_string(base64_encoded_string.as_bytes());