base67 0.1.0

A base67 encoding/decoding library for Rust
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented3 out of 3 items with examples
  • Size
  • Source code size: 16.15 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.28 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • liberocks
base67-0.1.0 has been yanked.

Base67

Build Status Coverage Codacy Badge Contributors License

Base67 is a base64-like encoding scheme that uses a 67-character alphabet.

Usage

use base67::{encode, decode};

fn main() {
    // Encode a string
    let data = b"Hello, World!";
    let encoded = encode(data);
    println!("Encoded: {}", encoded);
    
    // Decode back to original
    let decoded = decode(&encoded).unwrap();
    println!("Decoded: {}", String::from_utf8(decoded).unwrap());
}