[][src]Enum secret_keeper::ciphers::CipherKind

pub enum CipherKind {
    AesGcm256,
    XChaCha20Poly1305,
    LZ4XChaCha20Poly1305,
}

Encryption cipher algorithm

Variants

AesGcm256

aes-gcm encryption with 256-bit key

XChaCha20Poly1305

xchacha20-poly1305

LZ4XChaCha20Poly1305

xchacha20-poly1305 with lz4 compression

Trait Implementations

impl Clone for CipherKind[src]

impl Debug for CipherKind[src]

impl<'de> Deserialize<'de> for CipherKind[src]

impl Display for CipherKind[src]

impl FromStr for CipherKind[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl PartialEq<CipherKind> for CipherKind[src]

impl Serialize for CipherKind[src]

impl StructuralPartialEq for CipherKind[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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

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> ToString for T where
    T: Display + ?Sized
[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.