[][src]Struct ed25519_bip32::XPub

pub struct XPub(_);

Extended Public Key (Point + ChainCode)

Methods

impl XPub[src]

pub fn from_bytes(bytes: [u8; 64]) -> Self[src]

create a XPub by taking ownership of the given array

pub fn from_slice(bytes: &[u8]) -> Result<Self, PublicKeyError>[src]

create a XPub from the given slice. This slice must be of size XPUB_SIZE otherwise it will return Option::None.

pub fn verify<T>(&self, message: &[u8], signature: &Signature<T>) -> bool[src]

verify a signature

pub fn derive(
    &self,
    scheme: DerivationScheme,
    index: DerivationIndex
) -> Result<Self, DerivationError>
[src]

pub fn get_without_chaincode(&self, out: &mut [u8; 32])[src]

Trait Implementations

impl Eq for XPub[src]

impl Clone for XPub[src]

impl AsRef<[u8]> for XPub[src]

impl PartialEq<XPub> for XPub[src]

impl From<XPub> for [u8; 64][src]

impl Copy for XPub[src]

impl Hash for XPub[src]

impl Debug for XPub[src]

impl Display for XPub[src]

Auto Trait Implementations

impl Send for XPub

impl Unpin for XPub

impl Sync for XPub

impl UnwindSafe for XPub

impl RefUnwindSafe for XPub

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]