oxidelta 0.1.4

VCDIFF (RFC 3284) delta encoder/decoder — Rust reimplementation of xdelta3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Hash and matching algorithms for xdelta delta compression.
//
// This module provides:
// - Rolling hash functions (small 4-byte and large Rabin-Karp)
// - Hash tables with HASH_CKOFFSET semantics
// - Block matching with forward/backward extension
// - Matcher profiles (fastest..slow)

pub mod config;
pub mod matching;
pub mod rolling;
pub mod table;