Struct vapstore::Crypto[][src]

pub struct Crypto {
    pub cipher: Cipher,
    pub ciphertext: Vec<u8>,
    pub kdf: Kdf,
    pub mac: [u8; 32],
}

Encrypted data

Fields

cipher: Cipher

Encryption parameters

ciphertext: Vec<u8>

Encrypted data buffer

kdf: Kdf

Key derivation function parameters

mac: [u8; 32]

Message authentication code

Implementations

impl Crypto[src]

pub fn with_secret(
    secret: &Secret,
    password: &Password,
    iterations: u32
) -> Result<Self, Error>
[src]

Encrypt account secret

pub fn with_plain(
    plain: &[u8],
    password: &Password,
    iterations: u32
) -> Result<Self, Error>
[src]

Encrypt custom plain data

pub fn secret(&self, password: &Password) -> Result<Secret, Error>[src]

Try to decrypt and convert result to account secret

pub fn decrypt(&self, password: &Password) -> Result<Vec<u8>, Error>[src]

Try to decrypt and return result as is

Trait Implementations

impl Clone for Crypto[src]

impl Debug for Crypto[src]

impl FromStr for Crypto[src]

type Err = <Crypto as FromStr>::Err

The associated error which can be returned from parsing.

impl PartialEq<Crypto> for Crypto[src]

impl StructuralPartialEq for Crypto[src]

Auto Trait Implementations

impl RefUnwindSafe for Crypto

impl Send for Crypto

impl Sync for Crypto

impl Unpin for Crypto

impl UnwindSafe for Crypto

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> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,