Struct secp256k1::key::SecretKey [] [src]

#[repr(C)]
pub struct SecretKey(_);

Secret 256-bit key used as x in an ECDSA signature

Methods

impl SecretKey
[src]

Converts the object to a raw pointer for FFI interfacing

Converts the object to a mutable raw pointer for FFI interfacing

Returns the length of the object as an array

Returns whether the object as an array is empty

impl SecretKey
[src]

Creates a new random secret key

Converts a SECRET_KEY_SIZE-byte slice to a secret key

Adds one secret key to another, modulo the curve order

Multiplies one secret key to another, modulo the curve order

Inverts (1 / self) this secret key.

Trait Implementations

impl Copy for SecretKey
[src]

impl PartialEq for SecretKey
[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 SecretKey
[src]

impl Clone for SecretKey
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Index<usize> for SecretKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<Range<usize>> for SecretKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeTo<usize>> for SecretKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFrom<usize>> for SecretKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Index<RangeFull> for SecretKey
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl Debug for SecretKey
[src]

Formats the value using the given formatter.

impl From<[u8; 32]> for SecretKey
[src]

Performs the conversion.