wg-toolkit 0.4.1

Toolkit for various binary and text formats distributed by Wargaming.net (BigWorld, Core engine).
Documentation
1
2
3
4
5
6
7
8
//! Multiple IO filters (RSA, Blowfish, plain) that may be used in element
//! codecs.

pub mod blowfish;
pub mod rsa;

pub use self::blowfish::{BlowfishReader, BlowfishWriter};
pub use self::rsa::{RsaReader, RsaWriter};