unegg 0.1.0

EGG archive extractor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Extractor for the EGG archive format.
//!
//! Opens EGG archives (Store, Deflate, Bzip2, LZMA, and AZO entries, with
//! optional ZipCrypto/AES/LEA encryption, solid and split archives) and
//! extracts them to disk. Open an archive with [`archive::EggArchive`] and
//! write entries out with [`extract`].

pub mod aes_ctr;
pub mod archive;
pub mod crypto;
pub mod encoding;
pub mod error;
pub mod extract;
pub mod lea;

pub mod decompress;
pub mod volume;