pub struct SECP { /* private fields */ }Expand description
Global secp context.
Methods from Deref<Target = Secp256k1<All>>§
Sourcepub fn sign_ecdsa(&self, msg: impl Into<Message>, sk: &SecretKey) -> Signature
👎Deprecated since 0.32.0: use ecdsa::sign instead
pub fn sign_ecdsa(&self, msg: impl Into<Message>, sk: &SecretKey) -> Signature
Constructs a signature for msg using the secret key sk and RFC6979 nonce
Requires a signing-capable context.
Sourcepub fn sign_ecdsa_with_noncedata(
&self,
msg: impl Into<Message>,
sk: &SecretKey,
noncedata: &[u8; 32],
) -> Signature
👎Deprecated since 0.32.0: use ecdsa::sign_with_noncedata instead
pub fn sign_ecdsa_with_noncedata( &self, msg: impl Into<Message>, sk: &SecretKey, noncedata: &[u8; 32], ) -> Signature
Constructs a signature for msg using the secret key sk and RFC6979 nonce
and includes 32 bytes of noncedata in the nonce generation via inclusion in
one of the hash operations during nonce generation. This is useful when multiple
signatures are needed for the same Message and SecretKey while still using RFC6979.
Requires a signing-capable context.
Sourcepub fn sign_ecdsa_grind_r(
&self,
msg: impl Into<Message>,
sk: &SecretKey,
bytes_to_grind: usize,
) -> Signature
👎Deprecated since 0.32.0: use ecdsa::sign_grind_r instead
pub fn sign_ecdsa_grind_r( &self, msg: impl Into<Message>, sk: &SecretKey, bytes_to_grind: usize, ) -> Signature
Constructs a signature for msg using the secret key sk, RFC6979 nonce
and “grinds” the nonce by passing extra entropy if necessary to produce
a signature that is less than 71 - bytes_to_grind bytes. The number
of signing operation performed by this function is exponential in the
number of bytes grinded.
Requires a signing capable context.
Sourcepub fn sign_ecdsa_low_r(
&self,
msg: impl Into<Message>,
sk: &SecretKey,
) -> Signature
👎Deprecated since 0.32.0: use ecdsa::sign_low_r instead
pub fn sign_ecdsa_low_r( &self, msg: impl Into<Message>, sk: &SecretKey, ) -> Signature
Constructs a signature for msg using the secret key sk, RFC6979 nonce
and “grinds” the nonce by passing extra entropy if necessary to produce
a signature that is less than 71 bytes and compatible with the low r
signature implementation of bitcoin core. In average, this function
will perform two signing operations.
Requires a signing capable context.
Sourcepub fn verify_ecdsa(
&self,
msg: impl Into<Message>,
sig: &Signature,
pk: &PublicKey,
) -> Result<(), Error>
👎Deprecated since 0.32.0: use ecdsa::verify instead
pub fn verify_ecdsa( &self, msg: impl Into<Message>, sig: &Signature, pk: &PublicKey, ) -> Result<(), Error>
Checks that sig is a valid ECDSA signature for msg using the public
key pubkey. Returns Ok(()) on success. Note that this function cannot
be used for Bitcoin consensus checking since there may exist signatures
which OpenSSL would verify but not libsecp256k1, or vice-versa. Requires a
verify-capable context.
let message = Message::from_digest_slice(&[0xab; 32]).expect("32 bytes");
let sig = secp.sign_ecdsa(message, &secret_key);
assert_eq!(secp.verify_ecdsa(message, &sig, &public_key), Ok(()));
let message = Message::from_digest_slice(&[0xcd; 32]).expect("32 bytes");
assert_eq!(secp.verify_ecdsa(message, &sig, &public_key), Err(Error::IncorrectSignature));Sourcepub fn sign_schnorr_no_aux_rand(
&self,
msg: &[u8],
keypair: &Keypair,
) -> Signature
👎Deprecated since 0.32.0: use schnorr::sign_no_aux_rand instead
pub fn sign_schnorr_no_aux_rand( &self, msg: &[u8], keypair: &Keypair, ) -> Signature
Creates a schnorr signature without using any auxiliary random data.
Sourcepub fn sign_schnorr_with_aux_rand(
&self,
msg: &[u8],
keypair: &Keypair,
aux_rand: &[u8; 32],
) -> Signature
👎Deprecated since 0.32.0: use schnorr::sign_with_aux_rand instead
pub fn sign_schnorr_with_aux_rand( &self, msg: &[u8], keypair: &Keypair, aux_rand: &[u8; 32], ) -> Signature
Creates a schnorr signature using the given auxiliary random data.
Sourcepub fn verify_schnorr(
&self,
sig: &Signature,
msg: &[u8],
pubkey: &XOnlyPublicKey,
) -> Result<(), Error>
👎Deprecated since 0.32.0: use schnorr::verify instead
pub fn verify_schnorr( &self, sig: &Signature, msg: &[u8], pubkey: &XOnlyPublicKey, ) -> Result<(), Error>
Verifies a schnorr signature.