Struct secp256k1::SecretKey[][src]

pub struct SecretKey(_);

Secret key (256-bit) on a secp256k1 curve.

Implementations

impl SecretKey[src]

pub fn parse(p: &[u8; 32]) -> Result<SecretKey, Error>[src]

pub fn parse_slice(p: &[u8]) -> Result<SecretKey, Error>[src]

pub fn random<R: Rng>(rng: &mut R) -> SecretKey[src]

pub fn serialize(&self) -> [u8; 32][src]

pub fn tweak_add_assign(&mut self, tweak: &SecretKey) -> Result<(), Error>[src]

pub fn tweak_mul_assign(&mut self, tweak: &SecretKey) -> Result<(), Error>[src]

pub fn inv(&self) -> Self[src]

Trait Implementations

impl Clone for SecretKey[src]

impl Debug for SecretKey[src]

impl Default for SecretKey[src]

impl Drop for SecretKey[src]

impl Eq for SecretKey[src]

impl Into<Scalar> for SecretKey[src]

impl LowerHex for SecretKey[src]

impl PartialEq<SecretKey> for SecretKey[src]

impl StructuralEq for SecretKey[src]

impl StructuralPartialEq for SecretKey[src]

impl TryFrom<Scalar> for SecretKey[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for SecretKey

impl Send for SecretKey

impl Sync for SecretKey

impl Unpin for SecretKey

impl UnwindSafe for SecretKey

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[src]

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>, 
[src]