pub struct SignatureConfig {
    pub version: SignatureVersion,
    pub typ: SignatureType,
    pub pub_alg: PublicKeyAlgorithm,
    pub hash_alg: HashAlgorithm,
    pub unhashed_subpackets: Vec<Subpacket>,
    pub hashed_subpackets: Vec<Subpacket>,
    pub created: Option<DateTime<Utc>>,
    pub issuer: Option<KeyId>,
}

Fields

version: SignatureVersiontyp: SignatureTypepub_alg: PublicKeyAlgorithmhash_alg: HashAlgorithmunhashed_subpackets: Vec<Subpacket>hashed_subpackets: Vec<Subpacket>created: Option<DateTime<Utc>>issuer: Option<KeyId>

Implementations

Sign the given data.

Create a certificate siganture.

Sign a key binding.

Signs a direct key signature or a revocation.

Returns what kind of signature this is.

Calcluate the serialized version of this packet, but only the part relevant for hashing.

Returns an iterator over all subpackets of this signature.

Returns if the signature is a certificate or not.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.