Struct secp256k1::ffi::SharedSecret [−][src]
#[repr(C)]pub struct SharedSecret(_);
Library-internal representation of an ECDH shared secret
Methods
impl SharedSecret[src]
impl SharedSecretpub fn as_ptr(&self) -> *const c_uchar[src]
pub fn as_ptr(&self) -> *const c_ucharConverts the object to a raw pointer for FFI interfacing
pub fn as_mut_ptr(&mut self) -> *mut c_uchar[src]
pub fn as_mut_ptr(&mut self) -> *mut c_ucharConverts the object to a mutable raw pointer for FFI interfacing
pub fn len(&self) -> usize[src]
pub fn len(&self) -> usizeReturns the length of the object as an array
pub fn is_empty(&self) -> bool[src]
pub fn is_empty(&self) -> boolReturns whether the object as an array is empty
impl SharedSecret[src]
impl SharedSecretpub fn new() -> SharedSecret[src]
pub fn new() -> SharedSecretCreate a new (zeroed) signature usable for the FFI interface
pub unsafe fn blank() -> SharedSecret[src]
pub unsafe fn blank() -> SharedSecretCreate a new (uninitialized) signature usable for the FFI interface
Trait Implementations
impl From<SharedSecret> for SharedSecret[src]
impl From<SharedSecret> for SharedSecretCreates a new shared secret from a FFI shared secret
fn from(ss: SharedSecret) -> SharedSecret[src]
fn from(ss: SharedSecret) -> SharedSecretPerforms the conversion.
impl Copy for SharedSecret[src]
impl Copy for SharedSecretimpl PartialEq for SharedSecret[src]
impl PartialEq for SharedSecretfn eq(&self, other: &SharedSecret) -> bool[src]
fn eq(&self, other: &SharedSecret) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for SharedSecret[src]
impl Eq for SharedSecretimpl Clone for SharedSecret[src]
impl Clone for SharedSecretfn clone(&self) -> SharedSecret[src]
fn clone(&self) -> SharedSecretReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Index<usize> for SharedSecret[src]
impl Index<usize> for SharedSecrettype Output = c_uchar
The returned type after indexing.
fn index(&self, index: usize) -> &c_uchar[src]
fn index(&self, index: usize) -> &c_ucharPerforms the indexing (container[index]) operation.
impl Index<Range<usize>> for SharedSecret[src]
impl Index<Range<usize>> for SharedSecrettype Output = [c_uchar]
The returned type after indexing.
fn index(&self, index: Range<usize>) -> &[c_uchar][src]
fn index(&self, index: Range<usize>) -> &[c_uchar]Performs the indexing (container[index]) operation.
impl Index<RangeTo<usize>> for SharedSecret[src]
impl Index<RangeTo<usize>> for SharedSecrettype Output = [c_uchar]
The returned type after indexing.
fn index(&self, index: RangeTo<usize>) -> &[c_uchar][src]
fn index(&self, index: RangeTo<usize>) -> &[c_uchar]Performs the indexing (container[index]) operation.
impl Index<RangeFrom<usize>> for SharedSecret[src]
impl Index<RangeFrom<usize>> for SharedSecrettype Output = [c_uchar]
The returned type after indexing.
fn index(&self, index: RangeFrom<usize>) -> &[c_uchar][src]
fn index(&self, index: RangeFrom<usize>) -> &[c_uchar]Performs the indexing (container[index]) operation.
impl Index<RangeFull> for SharedSecret[src]
impl Index<RangeFull> for SharedSecrettype Output = [c_uchar]
The returned type after indexing.
fn index(&self, _: RangeFull) -> &[c_uchar][src]
fn index(&self, _: RangeFull) -> &[c_uchar]Performs the indexing (container[index]) operation.
impl Debug for SharedSecret[src]
impl Debug for SharedSecretAuto Trait Implementations
impl Send for SharedSecret
impl Send for SharedSecretimpl Sync for SharedSecret
impl Sync for SharedSecret