hoprd_keypair::key_pair

Struct HoprKeys

Source
pub struct HoprKeys {
    pub packet_key: OffchainKeypair,
    pub chain_key: ChainKeypair,
    /* private fields */
}

Fields§

§packet_key: OffchainKeypair§chain_key: ChainKeypair

Implementations§

Source§

impl HoprKeys

Source

pub fn random() -> Self

Creates two new keypairs, one for off-chain affairs and another one to be used within the smart contract

Source

pub fn read_eth_keystore(path: &str, password: &str) -> Result<(Self, bool)>

Reads a keystore file using custom FS operations

Highly inspired by <https://github.com/roynalnaruto/eth-keystore-rs>

Source

pub fn write_eth_keystore(&self, path: &str, password: &str) -> Result<()>

Writes a keystore file using custom FS operation and custom entropy source

Highly inspired by <https://github.com/roynalnaruto/eth-keystore-rs>

Source

pub fn id(&self) -> &Uuid

Trait Implementations§

Source§

impl Debug for HoprKeys

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Display for HoprKeys

Source§

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

Formats the value using the given formatter. Read more
Source§

impl PartialEq for HoprKeys

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for HoprKeys

Source§

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

Serialize without private keys

Source§

impl TryFrom<&str> for HoprKeys

Source§

fn try_from(s: &str) -> Result<Self, Self::Error>

Deserializes HoprKeys from string

use hoprd_keypair::key_pair::HoprKeys;

let priv_keys = "0x56b29cefcdf576eea306ba2fd5f32e651c09e0abbc018c47bdc6ef44f6b7506f1050f95137770478f50b456267f761f1b8b341a13da68bc32e5c96984fcd52ae";
assert!(HoprKeys::try_from(priv_keys).is_ok());
Source§

type Error = KeyPairError

The type returned in the event of a conversion error.
Source§

impl TryFrom<[u8; 64]> for HoprKeys

Source§

fn try_from(value: [u8; 64]) -> Result<Self, Self::Error>

Deserializes HoprKeys from binary string

use hoprd_keypair::key_pair::HoprKeys;

let priv_keys = [
    0x56,0xb2,0x9c,0xef,0xcd,0xf5,0x76,0xee,0xa3,0x06,0xba,0x2f,0xd5,0xf3,0x2e,0x65,
    0x1c,0x09,0xe0,0xab,0xbc,0x01,0x8c,0x47,0xbd,0xc6,0xef,0x44,0xf6,0xb7,0x50,0x6f,
    0x10,0x50,0xf9,0x51,0x37,0x77,0x04,0x78,0xf5,0x0b,0x45,0x62,0x67,0xf7,0x61,0xf1,
    0xb8,0xb3,0x41,0xa1,0x3d,0xa6,0x8b,0xc3,0x2e,0x5c,0x96,0x98,0x4f,0xcd,0x52,0xae
];
assert!(HoprKeys::try_from(priv_keys).is_ok());
Source§

type Error = KeyPairError

The type returned in the event of a conversion error.
Source§

impl TryFrom<([u8; 32], [u8; 32])> for HoprKeys

Source§

fn try_from(value: ([u8; 32], [u8; 32])) -> Result<Self, Self::Error>

Deserializes HoprKeys from tuple of two binary private keys

use hoprd_keypair::key_pair::HoprKeys;

let priv_keys = (
[
    0x56,0xb2,0x9c,0xef,0xcd,0xf5,0x76,0xee,0xa3,0x06,0xba,0x2f,0xd5,0xf3,0x2e,0x65,
    0x1c,0x09,0xe0,0xab,0xbc,0x01,0x8c,0x47,0xbd,0xc6,0xef,0x44,0xf6,0xb7,0x50,0x6f,
], [
    0x10,0x50,0xf9,0x51,0x37,0x77,0x04,0x78,0xf5,0x0b,0x45,0x62,0x67,0xf7,0x61,0xf1,
    0xb8,0xb3,0x41,0xa1,0x3d,0xa6,0x8b,0xc3,0x2e,0x5c,0x96,0x98,0x4f,0xcd,0x52,0xae
]);
assert!(HoprKeys::try_from(priv_keys).is_ok());
Source§

type Error = KeyPairError

The type returned in the event of a conversion error.
Source§

impl TryFrom<IdentityRetrievalModes<'_>> for HoprKeys

Source§

type Error = KeyPairError

The type returned in the event of a conversion error.
Source§

fn try_from(value: IdentityRetrievalModes<'_>) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> JsonSchemaMaybe for T