wt_blk 0.2.0

Parser and unpacker for the BLK file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// De-obfuscates vromv stream and/or beginning
pub mod de_obfuscation;
mod enums;
mod util;

/// This module unpacks the "outer" shell of the vromf image
/// It is generally expected to directly call into the public interfaces from this module, ignoring the inner lower-level functions
mod binary_container;

mod header;
/// Unpacks the contents after binary unpacking
mod inner_container;
#[cfg(test)]
mod test;
mod unpacker;

pub use unpacker::{BlkOutputFormat, File, VromfUnpacker};