Skip to content

Commit 1f4d9e5

Browse files
Viktor Dukhovnidefinability
Viktor Dukhovni
authored andcommitted
Post-merge make update
Reviewed-by: Tim Hudson <[email protected]> Reviewed-by: Neil Horman <[email protected]> Reviewed-by: Tomas Mraz <[email protected]> (Merged from openssl#26715)
1 parent 6649858 commit 1f4d9e5

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

crypto/err/openssl.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,8 @@ PROV_R_MISSING_SEED:140:missing seed
11311131
PROV_R_MISSING_SESSION_ID:133:missing session id
11321132
PROV_R_MISSING_TYPE:134:missing type
11331133
PROV_R_MISSING_XCGHASH:135:missing xcghash
1134-
PROV_R_ML_KEM_NO_FORMAT:251:ml kem no format
1134+
PROV_R_ML_DSA_NO_FORMAT:245:ml dsa no format
1135+
PROV_R_ML_KEM_NO_FORMAT:246:ml kem no format
11351136
PROV_R_MODULE_INTEGRITY_FAILURE:214:module integrity failure
11361137
PROV_R_NOT_A_PRIVATE_KEY:221:not a private key
11371138
PROV_R_NOT_A_PUBLIC_KEY:220:not a public key
@@ -1143,7 +1144,7 @@ PROV_R_NO_INSTANCE_ALLOWED:242:no instance allowed
11431144
PROV_R_NO_KEY_SET:114:no key set
11441145
PROV_R_NO_PARAMETERS_SET:177:no parameters set
11451146
PROV_R_NULL_LENGTH_POINTER:247:null length pointer
1146-
PROV_R_NULL_OUTPUT_BUFFER:245:null output buffer
1147+
PROV_R_NULL_OUTPUT_BUFFER:248:null output buffer
11471148
PROV_R_ONESHOT_CALL_OUT_OF_ORDER:239:oneshot call out of order
11481149
PROV_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE:178:\
11491150
operation not supported for this keytype
@@ -1175,17 +1176,16 @@ PROV_R_UNABLE_TO_INITIALISE_CIPHERS:208:unable to initialise ciphers
11751176
PROV_R_UNABLE_TO_LOAD_SHA256:147:unable to load sha256
11761177
PROV_R_UNABLE_TO_LOCK_PARENT:201:unable to lock parent
11771178
PROV_R_UNABLE_TO_RESEED:204:unable to reseed
1178-
PROV_R_UNEXPECTED_KEY_OID:249:unexpected key oid
1179-
PROV_R_UNEXPECTED_KEY_PARAMETERS:250:unexpected key parameters
1179+
PROV_R_UNEXPECTED_KEY_PARAMETERS:249:unexpected key parameters
11801180
PROV_R_UNSUPPORTED_CEK_ALG:145:unsupported cek alg
11811181
PROV_R_UNSUPPORTED_KEY_SIZE:153:unsupported key size
11821182
PROV_R_UNSUPPORTED_MAC_TYPE:137:unsupported mac type
11831183
PROV_R_UNSUPPORTED_NUMBER_OF_ROUNDS:152:unsupported number of rounds
1184-
PROV_R_UNSUPPORTED_SELECTION:248:unsupported selection
1184+
PROV_R_UNSUPPORTED_SELECTION:250:unsupported selection
11851185
PROV_R_UPDATE_CALL_OUT_OF_ORDER:240:update call out of order
11861186
PROV_R_URI_AUTHORITY_UNSUPPORTED:223:uri authority unsupported
11871187
PROV_R_VALUE_ERROR:138:value error
1188-
PROV_R_WRONG_CIPHERTEXT_SIZE:246:wrong ciphertext size
1188+
PROV_R_WRONG_CIPHERTEXT_SIZE:251:wrong ciphertext size
11891189
PROV_R_WRONG_FINAL_BLOCK_LENGTH:107:wrong final block length
11901190
PROV_R_WRONG_OUTPUT_BUFFER_SIZE:139:wrong output buffer size
11911191
PROV_R_XOF_DIGESTS_NOT_ALLOWED:183:xof digests not allowed

include/openssl/proverr.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@
109109
# define PROV_R_MISSING_SESSION_ID 133
110110
# define PROV_R_MISSING_TYPE 134
111111
# define PROV_R_MISSING_XCGHASH 135
112-
# define PROV_R_ML_KEM_NO_FORMAT 251
112+
# define PROV_R_ML_DSA_NO_FORMAT 245
113+
# define PROV_R_ML_KEM_NO_FORMAT 246
113114
# define PROV_R_MODULE_INTEGRITY_FAILURE 214
114115
# define PROV_R_NOT_A_PRIVATE_KEY 221
115116
# define PROV_R_NOT_A_PUBLIC_KEY 220
@@ -121,7 +122,7 @@
121122
# define PROV_R_NO_KEY_SET 114
122123
# define PROV_R_NO_PARAMETERS_SET 177
123124
# define PROV_R_NULL_LENGTH_POINTER 247
124-
# define PROV_R_NULL_OUTPUT_BUFFER 245
125+
# define PROV_R_NULL_OUTPUT_BUFFER 248
125126
# define PROV_R_ONESHOT_CALL_OUT_OF_ORDER 239
126127
# define PROV_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 178
127128
# define PROV_R_OUTPUT_BUFFER_TOO_SMALL 106
@@ -149,17 +150,16 @@
149150
# define PROV_R_UNABLE_TO_LOAD_SHA256 147
150151
# define PROV_R_UNABLE_TO_LOCK_PARENT 201
151152
# define PROV_R_UNABLE_TO_RESEED 204
152-
# define PROV_R_UNEXPECTED_KEY_OID 249
153-
# define PROV_R_UNEXPECTED_KEY_PARAMETERS 250
153+
# define PROV_R_UNEXPECTED_KEY_PARAMETERS 249
154154
# define PROV_R_UNSUPPORTED_CEK_ALG 145
155155
# define PROV_R_UNSUPPORTED_KEY_SIZE 153
156156
# define PROV_R_UNSUPPORTED_MAC_TYPE 137
157157
# define PROV_R_UNSUPPORTED_NUMBER_OF_ROUNDS 152
158-
# define PROV_R_UNSUPPORTED_SELECTION 248
158+
# define PROV_R_UNSUPPORTED_SELECTION 250
159159
# define PROV_R_UPDATE_CALL_OUT_OF_ORDER 240
160160
# define PROV_R_URI_AUTHORITY_UNSUPPORTED 223
161161
# define PROV_R_VALUE_ERROR 138
162-
# define PROV_R_WRONG_CIPHERTEXT_SIZE 246
162+
# define PROV_R_WRONG_CIPHERTEXT_SIZE 251
163163
# define PROV_R_WRONG_FINAL_BLOCK_LENGTH 107
164164
# define PROV_R_WRONG_OUTPUT_BUFFER_SIZE 139
165165
# define PROV_R_XOF_DIGESTS_NOT_ALLOWED 183

providers/common/provider_err.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ static const ERR_STRING_DATA PROV_str_reasons[] = {
153153
"missing session id"},
154154
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MISSING_TYPE), "missing type"},
155155
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MISSING_XCGHASH), "missing xcghash"},
156+
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_ML_DSA_NO_FORMAT), "ml dsa no format"},
156157
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_ML_KEM_NO_FORMAT), "ml kem no format"},
157158
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MODULE_INTEGRITY_FAILURE),
158159
"module integrity failure"},
@@ -220,8 +221,6 @@ static const ERR_STRING_DATA PROV_str_reasons[] = {
220221
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNABLE_TO_LOCK_PARENT),
221222
"unable to lock parent"},
222223
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNABLE_TO_RESEED), "unable to reseed"},
223-
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNEXPECTED_KEY_OID),
224-
"unexpected key oid"},
225224
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNEXPECTED_KEY_PARAMETERS),
226225
"unexpected key parameters"},
227226
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNSUPPORTED_CEK_ALG),

0 commit comments

Comments
 (0)