From 73c5a713fb164ae8b4ac8a891a8020e08eae0a3b Mon Sep 17 00:00:00 2001 From: vnugent Date: Fri, 2 Feb 2024 23:05:48 -0500 Subject: update api to return secpvalidate return code instead of internal return codes --- src/noscrypt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/noscrypt.h') diff --git a/src/noscrypt.h b/src/noscrypt.h index b282085..34e119d 100644 --- a/src/noscrypt.h +++ b/src/noscrypt.h @@ -275,7 +275,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 NC_SUCCESS if the secret key is in a valid format, otherwise an error code +* @return 1 if the secret key is valid, 0 if it is not, otherwise an error code */ NC_EXPORT NCResult NC_CC NCValidateSecretKey( const NCContext* ctx, -- cgit