Crate extended_tea[][src]

Expand description

This crate provides a Rusty implementation of the XTEA cipher, written in Rust.

This crate also provides convenience methods for ciphering and deciphering u8 slices and Read streams.

See Wikipedia for more information on the XTEA cipher.

This crate makes use of Wrapping in order to bypass Rusts’ arithmetic overflow panics since the algorithm relies on overflowing wrapping around, not panicking.

Structs

Struct containing the XTEA info.