[][src]Struct minisign::SecretKey

pub struct SecretKey { /* fields omitted */ }

A SecretKey is used to create signatures.

Methods

impl SecretKey[src]

pub fn from_bytes(bytes_buf: &[u8]) -> Result<SecretKey>[src]

Deserialize a SecretKey.

For storage, a SecretKeyBox is usually what you need instead.

pub fn to_bytes(&self) -> Vec<u8>[src]

Serialize a SecretKey.

For storage, a SecretKeyBox is usually what you need instead.

pub fn from_box(
    sk_box: SecretKeyBox,
    password: Option<String>
) -> Result<SecretKey>
[src]

Convert a SecretKeyBox to a SecretKey.

pub fn to_box(&self, comment: Option<&str>) -> Result<SecretKeyBox>[src]

Convert a SecretKey to a SecretKeyBox.

pub fn from_file<P: AsRef<Path>>(
    sk_path: P,
    password: Option<String>
) -> Result<SecretKey>
[src]

Load a SecretKeyBox from a file, and returns a SecretKey from it.

Trait Implementations

impl Clone for SecretKey[src]

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

Performs copy-assignment from source. Read more

impl Eq for SecretKey[src]

impl PartialEq<SecretKey> for SecretKey[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Debug for SecretKey[src]

Auto Trait Implementations

impl Send for SecretKey

impl Sync for SecretKey

Blanket Implementations

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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self