[][src]Struct nnsdk::crypto::detail::Sha256Impl

#[repr(C)]
#[repr(align(16))]pub struct Sha256Impl {
    pub _x0: u64,
    pub _x8: u64,
    pub _x10: u32,
    pub __bindgen_padding_0: u64,
    pub _x14: u128,
    pub _x24: u128,
    pub _x34: u128,
    pub _x44: u32,
    pub _x48: u64,
    pub _x50: u64,
    pub _x58: u64,
    pub _x60: u64,
    pub _x68: u64,
    pub _x70: u32,
}

Fields

_x0: u64_x8: u64_x10: u32__bindgen_padding_0: u64_x14: u128_x24: u128_x34: u128_x44: u32_x48: u64_x50: u64_x58: u64_x60: u64_x68: u64_x70: u32

Implementations

impl Sha256Impl[src]

pub unsafe fn Initialize(&mut self)[src]

pub unsafe fn Update(&mut self, arg1: *const c_void, arg2: u64)[src]

pub unsafe fn ProcessBlocks(&mut self, arg1: *const u8, arg2: u64)[src]

pub unsafe fn GetHash(&mut self, destHash: *mut c_void, arg1: u64)[src]

pub unsafe fn ProcessLastBlock(&mut self)[src]

pub unsafe fn InitializeWithContext(&mut self, arg1: *const Sha256Context)[src]

pub unsafe fn GetContext(&self, arg1: *mut Sha256Context)[src]

Auto Trait Implementations

impl Send for Sha256Impl

impl Sync for Sha256Impl

impl Unpin for Sha256Impl

Blanket Implementations

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

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

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

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.