[][src]Struct age::x25519::Identity

pub struct Identity(_);

A secret key for decrypting an age file.

Implementations

impl Identity[src]

pub fn generate() -> Self[src]

Generates a new secret key.

pub fn to_string(&self) -> SecretString[src]

Serializes this secret key as a string.

pub fn to_public(&self) -> Recipient[src]

Returns the recipient key for this secret key.

Trait Implementations

impl Clone for Identity[src]

impl FromStr for Identity[src]

type Err = &'static str

The associated error which can be returned from parsing.

pub fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Parses an X25519 identity from a string.

impl Identity for Identity[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> From<T> for T[src]

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

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