[][src]Struct sequoia_openpgp::crypto::Password

pub struct Password(_);

Holds a password.

Passwords can be converted from various types using From. The password is encrypted in memory and only decrypted on demand. See mem::Encrypted for details.

Examples

use sequoia_openpgp as openpgp;
use openpgp::crypto::Password;

// Convert from a &str.
let p: Password = "hunter2".into();

// Convert from a &[u8].
let p: Password = b"hunter2"[..].into();

// Convert from a String.
let p: Password = String::from("hunter2").into();

// ...

Implementations

impl Password[src]

pub fn map<F, T>(&self, fun: F) -> T where
    F: FnMut(&Protected) -> T, 
[src]

Maps the given function over the password.

The password is stored encrypted in memory. This function temporarily decrypts it for the given function to use.

Examples

use sequoia_openpgp as openpgp;
use openpgp::crypto::Password;

let p: Password = "hunter2".into();
p.map(|p| assert_eq!(p.as_ref(), &b"hunter2"[..]));

Trait Implementations

impl Clone for Password[src]

impl Debug for Password[src]

impl Eq for Password[src]

impl<'_> From<&'_ [u8]> for Password[src]

impl<'a> From<&'a str> for Password[src]

impl From<Box<[u8]>> for Password[src]

impl From<String> for Password[src]

impl From<Vec<u8>> for Password[src]

impl PartialEq<Password> for Password[src]

impl StructuralEq for Password[src]

impl StructuralPartialEq for Password[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> DynClone for T where
    T: Clone
[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, 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.