zipora 3.1.7

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
1
2
3
4
5
6
7
8
//! Encoding and decoding operations.

pub mod base64;

pub use base64::{
    calculate_decoded_len, calculate_encoded_len, decode_base64, decode_base64_from_buffer,
    encode_base64, encode_base64_to_buffer,
};