Remove Schnorr word from keypairs
Keypairs are pair of EC points that don't have anything to do with the signature algorithm
This commit is contained in:
parent
49905b0d44
commit
aa50cc6ced
|
@ -718,7 +718,7 @@ impl KeyPair {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a Schnorr [`KeyPair`] directly from a secret key slice.
|
/// Creates a [`KeyPair`] directly from a secret key slice.
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
///
|
///
|
||||||
|
@ -743,7 +743,7 @@ impl KeyPair {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a Schnorr [`KeyPair`] directly from a secret key string.
|
/// Creates a [`KeyPair`] directly from a secret key string.
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
///
|
///
|
||||||
|
@ -759,7 +759,7 @@ impl KeyPair {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a Schnorr [`KeyPair`] directly from a secret key string and the global [`SECP256K1`] context.
|
/// Creates a [`KeyPair`] directly from a secret key string and the global [`SECP256K1`] context.
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue