Change error enum for KeyPair::from_seckey_slice
Also does another nit in the file which removes a trailing whitespace
This commit is contained in:
parent
05f4278499
commit
5bac4e4bac
|
@ -167,7 +167,7 @@ impl KeyPair {
|
||||||
data: &[u8],
|
data: &[u8],
|
||||||
) -> Result<KeyPair, Error> {
|
) -> Result<KeyPair, Error> {
|
||||||
if data.is_empty() || data.len() != constants::SECRET_KEY_SIZE {
|
if data.is_empty() || data.len() != constants::SECRET_KEY_SIZE {
|
||||||
return Err(InvalidPublicKey);
|
return Err(InvalidSecretKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
|
@ -313,7 +313,7 @@ impl PublicKey {
|
||||||
|
|
||||||
/// Tweak an x-only PublicKey by adding the generator multiplied with the given tweak to it.
|
/// Tweak an x-only PublicKey by adding the generator multiplied with the given tweak to it.
|
||||||
///
|
///
|
||||||
/// Returns a boolean representing the parity of the tweaked key, which can be provided to
|
/// Returns a boolean representing the parity of the tweaked key, which can be provided to
|
||||||
/// `tweak_add_check` which can be used to verify a tweak more efficiently than regenerating
|
/// `tweak_add_check` which can be used to verify a tweak more efficiently than regenerating
|
||||||
/// it and checking equality. Will return an error if the resulting key would be invalid or
|
/// it and checking equality. Will return an error if the resulting key would be invalid or
|
||||||
/// if the tweak was not a 32-byte length slice.
|
/// if the tweak was not a 32-byte length slice.
|
||||||
|
|
Loading…
Reference in New Issue