Struct secp256k1::ffi::SharedSecret [] [src]

pub struct SharedSecret(_);

Library-internal representation of an ECDH shared secret

Methods

impl SharedSecret
[src]

fn as_ptr(&self) -> *const c_uchar

Converts the object to a raw pointer for FFI interfacing

fn as_mut_ptr(&mut self) -> *mut c_uchar

Converts the object to a mutable raw pointer for FFI interfacing

fn len(&self) -> usize

Returns the length of the object as an array

fn is_empty(&self) -> bool

Returns whether the object as an array is empty

impl SharedSecret
[src]

fn new() -> SharedSecret

Create a new (zeroed) signature usable for the FFI interface

unsafe fn blank() -> SharedSecret

Create a new (uninitialized) signature usable for the FFI interface

Trait Implementations

impl Copy for SharedSecret
[src]

impl PartialEq for SharedSecret
[src]

fn eq(&self, other: &SharedSecret) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Eq for SharedSecret
[src]

impl Clone for SharedSecret
[src]

fn clone(&self) -> SharedSecret

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Index<usize> for SharedSecret
[src]

type Output = c_uchar

The returned type after indexing

fn index(&self, index: usize) -> &c_uchar

The method for the indexing (Foo[Bar]) operation

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

type Output = [c_uchar]

The returned type after indexing

fn index(&self, index: Range<usize>) -> &[c_uchar]

The method for the indexing (Foo[Bar]) operation

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

type Output = [c_uchar]

The returned type after indexing

fn index(&self, index: RangeTo<usize>) -> &[c_uchar]

The method for the indexing (Foo[Bar]) operation

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

type Output = [c_uchar]

The returned type after indexing

fn index(&self, index: RangeFrom<usize>) -> &[c_uchar]

The method for the indexing (Foo[Bar]) operation

impl Index<RangeFull> for SharedSecret
[src]

type Output = [c_uchar]

The returned type after indexing

fn index(&self, _: RangeFull) -> &[c_uchar]

The method for the indexing (Foo[Bar]) operation

impl Decodable for SharedSecret
[src]

fn decode<D: Decoder>(d: &mut D) -> Result<SharedSecret, D::Error>

impl Encodable for SharedSecret
[src]

fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error>

impl Deserialize for SharedSecret
[src]

fn deserialize<D>(d: &mut D) -> Result<SharedSecret, D::Error> where D: Deserializer

Deserialize this value given this Deserializer.

impl Serialize for SharedSecret
[src]

fn serialize<S>(&self, s: &mut S) -> Result<(), S::Error> where S: Serializer

Serializes this value into this serializer.

impl Debug for SharedSecret
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.