Struct libp2p_core::identity::secp256k1::SecretKey [−][src]
A Secp256k1 secret key.
Implementations
impl SecretKey
[src]
pub fn generate() -> SecretKey
[src]
Generate a new Secp256k1 secret key.
pub fn from_bytes(sk: impl AsMut<[u8]>) -> Result<SecretKey, DecodingError>
[src]
Create a secret key from a byte slice, zeroing the slice on success. If the bytes do not constitute a valid Secp256k1 secret key, an error is returned.
pub fn from_der(der: impl AsMut<[u8]>) -> Result<SecretKey, DecodingError>
[src]
Decode a DER-encoded Secp256k1 secret key in an ECPrivateKey structure as defined in RFC5915.
pub fn sign(&self, msg: &[u8]) -> Result<Vec<u8>, SigningError>
[src]
Sign a message with this secret key, producing a DER-encoded ECDSA signature, as defined in RFC3278.
pub fn to_bytes(&self) -> [u8; 32]
[src]
Returns the raw bytes of the secret key.
pub fn sign_hash(&self, msg: &[u8]) -> Result<Vec<u8>, SigningError>
[src]
Sign a raw message of length 256 bits with this secret key, produces a DER-encoded ECDSA signature.
Trait Implementations
impl Clone for SecretKey
[src]
impl Debug for SecretKey
[src]
impl From<Keypair> for SecretKey
[src]
Demote a Secp256k1 keypair into a secret key.
impl From<SecretKey> for Keypair
[src]
Promote a Secp256k1 secret key into a keypair.
Auto Trait Implementations
impl RefUnwindSafe for SecretKey
impl Send for SecretKey
impl Sync for SecretKey
impl Unpin for SecretKey
impl UnwindSafe for SecretKey
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> 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.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,