casc_lib/encoding/mod.rs
1//! Encoding file parser.
2//!
3//! The encoding file is the central lookup table that maps content keys (CKeys)
4//! to encoding keys (EKeys). Given a CKey (from the root file), the encoding
5//! table provides the EKey(s) needed to locate the data in the archive index.
6
7/// Encoding file binary parser and CKey-to-EKey lookup.
8pub mod parser;