[go: up one dir, main page]

z85 2.3.0

Rust implementation of ZeroMQ's Z85 encoding mechanism.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Rust implementation of ZeroMQ's Z85 encoding mechanism

//! `rfc` module does just what ZeroMQ's RFC says.
//! `padded` module adds padding to eliminate
//! the need of 4-byte aligned input data.
//! `padded` module hasn't been tested enough yet
//!  but there won't be any breaking changes.
mod internal;

/// [Experimental] RFC incompatible code
/// that can encode everything
pub mod padded;
/// Compatible with ZeroMQ's RFC
pub mod rfc;