Xtea

Struct Xtea 

Source
pub struct Xtea { /* private fields */ }
Expand description

An Xtea data structure equipped to perform the eXtended TEA block cipher. Each XTEA instance takes a 128-bit key represented in the form of [XteaKey], applying a pseudorandom permutation on passed-in data in 64-bit chunks, commonly referred to as “blocks”.

Implementations§

Source§

impl Xtea

Source

pub fn using_key(key: [u32; 4]) -> Self

Assigns a 128-bit key using the passed-in array of 32-bit integers.

Source

pub fn with_rounds(self, rounds: u32) -> Self

Specifies the amount of rounds to be used when processing the block ciphers. This overrides the default amount of rounds used of 32.

Source

pub fn encipher(&self, input: &mut [u8], output: &mut [u8]) -> Result<()>

Encrypts the supplied input data and writes the processed results to the output array.

Source

pub fn decipher(&self, input: &mut [u8], output: &mut [u8]) -> Result<()>

Decrypts the supplied encrypted input array and writes the processed results to the output array.

Trait Implementations§

Source§

impl Debug for Xtea

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Xtea

§

impl RefUnwindSafe for Xtea

§

impl Send for Xtea

§

impl Sync for Xtea

§

impl Unpin for Xtea

§

impl UnwindSafe for Xtea

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.