Struct safe_crypto::SecretSignKey[][src]

pub struct SecretSignKey { /* fields omitted */ }

Reference counted secret signing key used to verify signatures previously signed with PublicSignKey.

Methods

impl SecretSignKey
[src]

Construct from bytes. Useful when it was serialised before.

Get the inner secret key representation.

Produces the detached signature from the data.

Afterwards the returned Signature can be used to verify the authenticity of data.

Trait Implementations

impl Debug for SecretSignKey
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SecretSignKey
[src]

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

This method tests for !=.

impl Eq for SecretSignKey
[src]

impl Clone for SecretSignKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations