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

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]

fn clone(&self) -> Password[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Password[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn from(v: &[u8]) -> Self[src]

Performs the conversion.

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

fn from(v: &'a str) -> Self[src]

Performs the conversion.

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

fn from(v: Box<[u8]>) -> Self[src]

Performs the conversion.

impl From<String> for Password[src]

fn from(v: String) -> Self[src]

Performs the conversion.

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

fn from(v: Vec<u8>) -> Self[src]

Performs the conversion.

impl PartialEq<Password> for Password[src]

fn eq(&self, other: &Password) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Password) -> bool[src]

This method tests for !=.

impl Eq 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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn __clone_box(&self, Private) -> *mut ()[src]

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.