binascii 0.1.1

Useful no-std binascii operations including base64, base32 and base16 (hex)
Documentation

binascii

Build Status

Rust implementation of useful binascii functions.

  • Encode & Decode support for:
    • Base16 (Hex)
    • Base32
    • Base64
  • no_std support
  • never panics

Getting Started

  • Add binascii to your package's Cargo.toml:
    [dependencies]
    binascii = "0.1.1"
    
  • The API is very simple, head over to https://docs.rs/binascii/.