pub const BLOCK_SIZE: usize = 8;
pub const MIN_HEADER_SIZE: usize = 6;
pub const HEADER_SIZE: usize = 10;
pub const FILE_ENTRY_SIZE: usize = 12;
pub const SIZE_OF_FLAGS: usize = 4;
pub const SIZE_OF_FILE_COUNT: usize = 2;
pub const SIZE_OF_DATA_SIZE: usize = 4;
pub const SIZE_OF_ENCRYPTED_KEY: usize = 80;
pub const MIX_DB_FILENAME: &str = "local mix database.dat";
pub const XCC_HEADER_SIZE: usize = 52;
pub const XCC_FILE_TYPE: u32 = 0;
pub const XCC_FILE_VERSION: u32 = 0;
pub const XCC_ID_BYTES: &[u8] = b"XCC by Olaf van der Spek\x1a\x04\x17\x27\x10\x19\x80";