From: Tomas Mraz Date: Fri, 23 Jan 2026 14:33:42 +0000 (+0100) Subject: PROV_R_INVALID_FUNCTION_NAME: Fix colliding error reason code X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ae1002d426ab34081fc2ee8cb3314a4456c453a;p=thirdparty%2Fopenssl.git PROV_R_INVALID_FUNCTION_NAME: Fix colliding error reason code Reviewed-by: Norbert Pocs Reviewed-by: Eugene Syromiatnikov MergeDate: Fri Jan 23 17:42:08 2026 (Merged from https://github.com/openssl/openssl/pull/29738) --- diff --git a/crypto/err/openssl.txt b/crypto/err/openssl.txt index b3912877432..3d0e69ec39b 100644 --- a/crypto/err/openssl.txt +++ b/crypto/err/openssl.txt @@ -1073,7 +1073,7 @@ PROV_R_INVALID_DIGEST_LENGTH:166:invalid digest length PROV_R_INVALID_DIGEST_SIZE:218:invalid digest size PROV_R_INVALID_EDDSA_INSTANCE_FOR_ATTEMPTED_OPERATION:243:\ invalid eddsa instance for attempted operation -PROV_R_INVALID_FUNCTION_NAME:256:invalid function name +PROV_R_INVALID_FUNCTION_NAME:258:invalid function name PROV_R_INVALID_INPUT_LENGTH:230:invalid input length PROV_R_INVALID_ITERATION_COUNT:123:invalid iteration count PROV_R_INVALID_IV_LENGTH:109:invalid iv length diff --git a/include/openssl/proverr.h b/include/openssl/proverr.h index 82e1e0fc658..fa59c0d3070 100644 --- a/include/openssl/proverr.h +++ b/include/openssl/proverr.h @@ -65,7 +65,7 @@ #define PROV_R_INVALID_DIGEST_LENGTH 166 #define PROV_R_INVALID_DIGEST_SIZE 218 #define PROV_R_INVALID_EDDSA_INSTANCE_FOR_ATTEMPTED_OPERATION 243 -#define PROV_R_INVALID_FUNCTION_NAME 256 +#define PROV_R_INVALID_FUNCTION_NAME 258 #define PROV_R_INVALID_INPUT_LENGTH 230 #define PROV_R_INVALID_ITERATION_COUNT 123 #define PROV_R_INVALID_IV_LENGTH 109