diff options
author | vnugent <public@vaughnnugent.com> | 2024-02-02 23:05:48 -0500 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-02-02 23:05:48 -0500 |
commit | 73c5a713fb164ae8b4ac8a891a8020e08eae0a3b (patch) | |
tree | 73dc9c2e343d02969304f8725cfdecd2348e3c2b | |
parent | 06c73004e1a39a7ea4ea3a89c22dee0f66adb236 (diff) |
update api to return secpvalidate return code instead of internal return codes
-rw-r--r-- | src/noscrypt.c | 2 | ||||
-rw-r--r-- | src/noscrypt.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/noscrypt.c b/src/noscrypt.c index 71a3975..15d8da8 100644 --- a/src/noscrypt.c +++ b/src/noscrypt.c @@ -543,7 +543,7 @@ NC_EXPORT NCResult NC_CC NCValidateSecretKey( CHECK_INVALID_ARG(ctx->secpCtx) //Validate the secret key - return secp256k1_ec_seckey_verify(ctx->secpCtx, sk->key) ? NC_SUCCESS : E_INVALID_ARG; + return secp256k1_ec_seckey_verify(ctx->secpCtx, sk->key); } //Ecdsa Functions 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, |