zipora 2.1.4

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
9
10
11
12
//! Encoding and decoding operations.

pub mod base64;

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