[][src]Enum sequoia_openpgp::crypto::sexp::Sexp

pub enum Sexp {
    String(String_),
    List(Vec<Sexp>),
}

An S-Expression.

An S-Expression is either a string, or a list of S-Expressions.

Variants

String(String_)

Just a string.

List(Vec<Sexp>)

A list of S-Expressions.

Implementations

impl Sexp[src]

pub fn finish_decryption<R>(
    &self,
    recipient: &Key<PublicParts, R>,
    ciphertext: &Ciphertext,
    padding: bool
) -> Result<SessionKey> where
    R: KeyRole
[src]

Completes the decryption of this S-Expression representing a wrapped session key.

Such an expression is returned from gpg-agent's PKDECRYPT command. padding must be set according to the status messages sent.

pub fn to_signature(&self) -> Result<Signature>[src]

Parses this s-expression to a signature.

Such an expression is returned from gpg-agent's PKSIGN command.

pub fn string(&self) -> Option<&String_>[src]

Casts this to a string.

pub fn list(&self) -> Option<&[Sexp]>[src]

Casts this to a list.

Trait Implementations

impl Clone for Sexp[src]

impl Debug for Sexp[src]

impl Eq for Sexp[src]

impl Marshal for Sexp[src]

impl MarshalInto for Sexp[src]

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

impl PartialEq<Sexp> for Sexp[src]

impl Serialize for Sexp[src]

impl SerializeInto for Sexp[src]

impl StructuralEq for Sexp[src]

impl StructuralPartialEq for Sexp[src]

impl<'_> TryFrom<&'_ Ciphertext> for Sexp[src]

type Error = Error

The type returned in the event of a conversion error.

fn try_from(ciphertext: &Ciphertext) -> Result<Self>[src]

Constructs an S-Expression representing ciphertext.

The resulting expression is suitable for gpg-agent's INQUIRE CIPHERTEXT inquiry.

Auto Trait Implementations

impl RefUnwindSafe for Sexp

impl Send for Sexp

impl Sync for Sexp

impl Unpin for Sexp

impl UnwindSafe for Sexp

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