[][src]Struct eva_crypto::sm4::SM4

pub struct SM4 {
    pub round_keys: Vec<u8x4>,
}

Fields

round_keys: Vec<u8x4>

Methods

impl SM4[src]

pub fn new(key: &[u8]) -> SM4[src]

pub fn encrypt(self, data: &[u8]) -> Vec<u8>[src]

pub fn decrypt(self, data: &[u8]) -> Vec<u8>[src]

Auto Trait Implementations

impl Sync for SM4

impl Unpin for SM4

impl Send for SM4

impl UnwindSafe for SM4

impl RefUnwindSafe for SM4

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]