Struct secp256k1_test::key::SecretKey [] [src]

pub struct SecretKey(_);

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

Methods

impl SecretKey
[src]

[src]

Converts the object to a raw pointer for FFI interfacing

[src]

Converts the object to a mutable raw pointer for FFI interfacing

[src]

Returns the length of the object as an array

[src]

Returns whether the object as an array is empty

impl SecretKey
[src]

[src]

Creates a new random secret key

[src]

Converts a SECRET_KEY_SIZE-byte slice to a secret key

[src]

Adds one secret key to another, modulo the curve order

[src]

Multiplies one secret key by another, modulo the curve order

Trait Implementations

impl Copy for SecretKey
[src]

impl PartialEq for SecretKey
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Eq for SecretKey
[src]

impl Clone for SecretKey
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Index<usize> for SecretKey
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

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

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Index<RangeFull> for SecretKey
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl Decodable for SecretKey
[src]

[src]

Deserialize a value using a Decoder.

impl Encodable for SecretKey
[src]

[src]

Serialize a value using an Encoder.

impl<'de> Deserialize<'de> for SecretKey
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SecretKey
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for SecretKey
[src]

[src]

Formats the value using the given formatter.