[−][src]Struct webchain_rs::PrivateKey
Private key used as x in an ECDSA signature
Methods
impl PrivateKey[src]
pub fn gen() -> Self[src]
Generate a new PrivateKey at random (rand::OsRng)
pub fn gen_custom<R: Rng>(rng: &mut R) -> Self[src]
Generate a new PrivateKey with given custom random generator
pub fn try_from(data: &[u8]) -> Result<Self, Error>[src]
Try to convert a byte slice into PrivateKey.
Arguments
data- A byte slice withPRIVATE_KEY_BYTESlength
Example
const PKB: usize = emerald_rs::PRIVATE_KEY_BYTES; let pk = emerald_rs::PrivateKey::try_from(&[0u8; PKB]).unwrap(); assert_eq!(pk.to_string(), "0x0000000000000000000000000000000000000000000000000000000000000000");
pub fn to_address(self) -> Result<Address, Error>[src]
Extract Address from current private key.
pub fn sign_message(&self, msg: &str) -> Result<Signature, Error>[src]
Sign message
pub fn sign_bytes(&self, data: &[u8]) -> Result<Signature, Error>[src]
Sign a slice of bytes
pub fn sign_hash(&self, hash: [u8; 32]) -> Result<Signature, Error>[src]
Sign hash from message (Keccak-256)
Trait Implementations
impl Clone for PrivateKey[src]
fn clone(&self) -> PrivateKey[src]
default fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Ord for PrivateKey[src]
fn cmp(&self, other: &PrivateKey) -> Ordering[src]
default fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
default fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
default fn clamp(self, min: Self, max: Self) -> Self[src]
🔬 This is a nightly-only experimental API. (
clamp)Restrict a value to a certain interval. Read more
impl Eq for PrivateKey[src]
impl Into<SecretKey> for PrivateKey[src]
impl PartialOrd<PrivateKey> for PrivateKey[src]
fn partial_cmp(&self, other: &PrivateKey) -> Option<Ordering>[src]
fn lt(&self, other: &PrivateKey) -> bool[src]
fn le(&self, other: &PrivateKey) -> bool[src]
fn gt(&self, other: &PrivateKey) -> bool[src]
fn ge(&self, other: &PrivateKey) -> bool[src]
impl Copy for PrivateKey[src]
impl PartialEq<PrivateKey> for PrivateKey[src]
fn eq(&self, other: &PrivateKey) -> bool[src]
fn ne(&self, other: &PrivateKey) -> bool[src]
impl Default for PrivateKey[src]
fn default() -> PrivateKey[src]
impl From<[u8; 32]> for PrivateKey[src]
impl From<SecretKey> for PrivateKey[src]
impl Display for PrivateKey[src]
impl Debug for PrivateKey[src]
impl Deref for PrivateKey[src]
impl Hash for PrivateKey[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
default fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl FromStr for PrivateKey[src]
Auto Trait Implementations
impl Send for PrivateKey
impl Sync for PrivateKey
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,