[][src]Enum sequoia_openpgp::crypto::S2K

pub enum S2K {
    Simple {
        hash: HashAlgorithm,
    },
    Salted {
        hash: HashAlgorithm,
        salt: [u8; 8],
    },
    Iterated {
        hash: HashAlgorithm,
        salt: [u8; 8],
        hash_bytes: u32,
    },
    Private(u8),
    Unknown(u8),
}

String-to-Key (S2K) specifiers.

String-to-key (S2K) specifiers are used to convert password strings into symmetric-key encryption/decryption keys. See Section 3.7 of RFC 4880.

Variants

Simple

Simply hashes the password.

Fields of Simple

hash: HashAlgorithm

Hash used for key derivation.

Salted

Hashes the password with a public salt value.

Fields of Salted

hash: HashAlgorithm

Hash used for key derivation.

salt: [u8; 8]

Public salt value mixed into the password.

Iterated

Repeatently hashes the password with a public salt value.

Fields of Iterated

hash: HashAlgorithm

Hash used for key derivation.

salt: [u8; 8]

Public salt value mixed into the password.

hash_bytes: u32

Number of bytes to hash.

Private(u8)

Private S2K algorithm

Unknown(u8)

Unknown S2K algorithm

Implementations

impl S2K[src]

pub fn derive_key(
    &self,
    password: &Password,
    key_size: usize
) -> Result<SessionKey>
[src]

Convert the string to a key using the S2K's parameters.

pub fn nearest_hash_count(hash_bytes: usize) -> u32[src]

This function returns an encodabled iteration count larger or equal hash_bytes.

Not all iteration counts are encodable as Iterated and Salted S2K. The largest encodable hash count is 0x3e00000.

pub fn decode_count(coded: u8) -> u32[src]

Decodes the OpenPGP encoding of the number of bytes to hash.

pub fn encode_count(hash_bytes: u32) -> Result<u8>[src]

Converts hash_bytes into coded count representation.

Errors

Fails with Error::InvalidArgument if hash_bytes cannot be encoded. See also S2K::nearest_hash_count().

Trait Implementations

impl Arbitrary for S2K[src]

impl Clone for S2K[src]

impl Copy for S2K[src]

impl Debug for S2K[src]

impl Default for S2K[src]

impl Display for S2K[src]

impl Eq for S2K[src]

impl Hash for S2K[src]

impl Marshal for S2K[src]

impl MarshalInto for S2K[src]

impl<'a> Parse<'a, S2K> for S2K[src]

fn from_reader<R: 'a + Read>(reader: R) -> Result<Self>[src]

Reads an S2K from reader.

impl PartialEq<S2K> for S2K[src]

impl StructuralEq for S2K[src]

impl StructuralPartialEq for S2K[src]

Auto Trait Implementations

impl RefUnwindSafe for S2K

impl Send for S2K

impl Sync for S2K

impl Unpin for S2K

impl UnwindSafe for S2K

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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,