Skip to content

Commit c42d2f1

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

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

crypto/err/openssl.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,6 @@ 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_DSA_NO_FORMAT:247:ml dsa no format
11351134
PROV_R_MODULE_INTEGRITY_FAILURE:214:module integrity failure
11361135
PROV_R_NOT_A_PRIVATE_KEY:221:not a private key
11371136
PROV_R_NOT_A_PUBLIC_KEY:220:not a public key
@@ -1173,8 +1172,6 @@ PROV_R_UNABLE_TO_INITIALISE_CIPHERS:208:unable to initialise ciphers
11731172
PROV_R_UNABLE_TO_LOAD_SHA256:147:unable to load sha256
11741173
PROV_R_UNABLE_TO_LOCK_PARENT:201:unable to lock parent
11751174
PROV_R_UNABLE_TO_RESEED:204:unable to reseed
1176-
PROV_R_UNEXPECTED_KEY_OID:245:unexpected key oid
1177-
PROV_R_UNEXPECTED_KEY_PARAMETERS:246:unexpected key parameters
11781175
PROV_R_UNSUPPORTED_CEK_ALG:145:unsupported cek alg
11791176
PROV_R_UNSUPPORTED_KEY_SIZE:153:unsupported key size
11801177
PROV_R_UNSUPPORTED_MAC_TYPE:137:unsupported mac type

include/openssl/proverr.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Generated by util/mkerr.pl DO NOT EDIT
3-
* Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3+
* Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
44
*
55
* Licensed under the Apache License 2.0 (the "License"). You may not use
66
* this file except in compliance with the License. You can obtain a copy
@@ -109,7 +109,6 @@
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_DSA_NO_FORMAT 247
113112
# define PROV_R_MODULE_INTEGRITY_FAILURE 214
114113
# define PROV_R_NOT_A_PRIVATE_KEY 221
115114
# define PROV_R_NOT_A_PUBLIC_KEY 220
@@ -147,8 +146,6 @@
147146
# define PROV_R_UNABLE_TO_LOAD_SHA256 147
148147
# define PROV_R_UNABLE_TO_LOCK_PARENT 201
149148
# define PROV_R_UNABLE_TO_RESEED 204
150-
# define PROV_R_UNEXPECTED_KEY_OID 245
151-
# define PROV_R_UNEXPECTED_KEY_PARAMETERS 246
152149
# define PROV_R_UNSUPPORTED_CEK_ALG 145
153150
# define PROV_R_UNSUPPORTED_KEY_SIZE 153
154151
# define PROV_R_UNSUPPORTED_MAC_TYPE 137

providers/common/include/prov/proverr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Generated by util/mkerr.pl DO NOT EDIT
3-
* Copyright 2020-2025 The OpenSSL Project Authors. All Rights Reserved.
3+
* Copyright 2020-2024 The OpenSSL Project Authors. All Rights Reserved.
44
*
55
* Licensed under the Apache License 2.0 (the "License"). You may not use
66
* this file except in compliance with the License. You can obtain a copy

providers/common/provider_err.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Generated by util/mkerr.pl DO NOT EDIT
3-
* Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3+
* Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
44
*
55
* Licensed under the Apache License 2.0 (the "License"). You may not use
66
* this file except in compliance with the License. You can obtain a copy
@@ -153,7 +153,6 @@ 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"},
157156
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_MODULE_INTEGRITY_FAILURE),
158157
"module integrity failure"},
159158
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_NOT_A_PRIVATE_KEY), "not a private key"},
@@ -216,10 +215,6 @@ static const ERR_STRING_DATA PROV_str_reasons[] = {
216215
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNABLE_TO_LOCK_PARENT),
217216
"unable to lock parent"},
218217
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNABLE_TO_RESEED), "unable to reseed"},
219-
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNEXPECTED_KEY_OID),
220-
"unexpected key oid"},
221-
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNEXPECTED_KEY_PARAMETERS),
222-
"unexpected key parameters"},
223218
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNSUPPORTED_CEK_ALG),
224219
"unsupported cek alg"},
225220
{ERR_PACK(ERR_LIB_PROV, 0, PROV_R_UNSUPPORTED_KEY_SIZE),

0 commit comments

Comments
 (0)