Struct CryptographicEngine
pub struct CryptographicEngine;
Implementations§
§impl CryptographicEngine
impl CryptographicEngine
pub fn Encrypt<P0, P1, P2>(key: P0, data: P1, iv: P2) -> Result<IBuffer>
pub fn Decrypt<P0, P1, P2>(key: P0, data: P1, iv: P2) -> Result<IBuffer>
pub fn EncryptAndAuthenticate<P0, P1, P2, P3>( key: P0, data: P1, nonce: P2, authenticateddata: P3, ) -> Result<EncryptedAndAuthenticatedData>
pub fn DecryptAndAuthenticate<P0, P1, P2, P3, P4>(
key: P0,
data: P1,
nonce: P2,
authenticationtag: P3,
authenticateddata: P4,
) -> Result<IBuffer>where
P0: Param<CryptographicKey>,
P1: Param<IBuffer>,
P2: Param<IBuffer>,
P3: Param<IBuffer>,
P4: Param<IBuffer>,
pub fn Sign<P0, P1>(key: P0, data: P1) -> Result<IBuffer>where
P0: Param<CryptographicKey>,
P1: Param<IBuffer>,
pub fn VerifySignature<P0, P1, P2>( key: P0, data: P1, signature: P2, ) -> Result<bool>
pub fn DeriveKeyMaterial<P0, P1>(
key: P0,
parameters: P1,
desiredkeysize: u32,
) -> Result<IBuffer>where
P0: Param<CryptographicKey>,
P1: Param<KeyDerivationParameters>,
pub fn SignHashedData<P0, P1>(key: P0, data: P1) -> Result<IBuffer>where
P0: Param<CryptographicKey>,
P1: Param<IBuffer>,
pub fn VerifySignatureWithHashInput<P0, P1, P2>( key: P0, data: P1, signature: P2, ) -> Result<bool>
pub fn DecryptAsync<P0, P1, P2>( key: P0, data: P1, iv: P2, ) -> Result<IAsyncOperation<IBuffer>>
pub fn SignAsync<P0, P1>(key: P0, data: P1) -> Result<IAsyncOperation<IBuffer>>where
P0: Param<CryptographicKey>,
P1: Param<IBuffer>,
pub fn SignHashedDataAsync<P0, P1>(
key: P0,
data: P1,
) -> Result<IAsyncOperation<IBuffer>>where
P0: Param<CryptographicKey>,
P1: Param<IBuffer>,
Auto Trait Implementations§
impl Freeze for CryptographicEngine
impl RefUnwindSafe for CryptographicEngine
impl Send for CryptographicEngine
impl Sync for CryptographicEngine
impl Unpin for CryptographicEngine
impl UnwindSafe for CryptographicEngine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more