From 88c9095743a12cf8fc1793c607ba3a1e4fa86483 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 29 May 2024 13:25:51 -0400 Subject: refactor!: return NC_SUCCESS when validating secret key --- include/noscrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/noscrypt.h') diff --git a/include/noscrypt.h b/include/noscrypt.h index 036d0bd..cdc74fe 100644 --- a/include/noscrypt.h +++ b/include/noscrypt.h @@ -314,7 +314,7 @@ NC_EXPORT NCResult NC_CC NCGetPublicKey( is functionally the same as calling secp256k1_ec_seckey_verify. * @param ctx A pointer to the existing library context * @param sk A pointer to the secret key to verify -* @return 1 if the secret key is valid, 0 if it is not, otherwise an error code +* @return NC_SUCCESS if the secret key is valid, otherwise an error code */ NC_EXPORT NCResult NC_CC NCValidateSecretKey( const NCContext* ctx, -- cgit