Struct libp2p::core::identity::secp256k1::SecretKey [−][src]
pub struct SecretKey(_);
A Secp256k1 secret key.
Implementations
impl SecretKey
[src]
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, Global>, 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, Global>, SigningError>
[src]
Sign a raw message of length 256 bits with this secret key, produces a DER-encoded ECDSA signature.