From fda674a48ac8e1a9d517bcb6a994abdb88decc79 Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Fri, 14 Nov 2025 11:06:03 -0600 Subject: [PATCH] Clarify return value of wc_RsaSSL_Verify/Inline --- doc/dox_comments/header_files/rsa.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/dox_comments/header_files/rsa.h b/doc/dox_comments/header_files/rsa.h index 5df2dc1f1d..ceb2f31f2a 100644 --- a/doc/dox_comments/header_files/rsa.h +++ b/doc/dox_comments/header_files/rsa.h @@ -351,7 +351,7 @@ int wc_RsaSSL_Sign(const byte* in, word32 inLen, byte* out, \brief Used to verify that the message was signed by RSA key. The output uses the same byte array as the input. - \return >0 Length of text. + \return >0 Length of the digest. \return <0 An error occurred. \param in Byte array to be decrypted. @@ -388,7 +388,7 @@ int wc_RsaSSL_VerifyInline(byte* in, word32 inLen, byte** out, \brief Used to verify that the message was signed by key. - \return Success Length of text on no error. + \return Success Length of digest on no error. \return MEMORY_E memory exception. \param in The byte array to be decrypted.