]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/openssl/cmp.h.in
APPS load_key_certs_crls(): improve error string macro FAIL_NAME
[thirdparty/openssl.git] / include / openssl / cmp.h.in
CommitLineData
7960dbec 1/*
798f9329
MC
2 * {- join("\n * ", @autowarntext) -}
3 *
4333b89f 4 * Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
8869ad4a
AK
5 * Copyright Nokia 2007-2019
6 * Copyright Siemens AG 2015-2019
7 *
8 * Licensed under the Apache License 2.0 (the "License"). You may not use
9 * this file except in compliance with the License. You can obtain a copy
10 * in the file LICENSE in the source distribution or at
11 * https://www.openssl.org/source/license.html
8869ad4a
AK
12 */
13
798f9329
MC
14{-
15use OpenSSL::stackhash qw(generate_stack_macros);
16-}
17
ae4186b0
DMSP
18#ifndef OPENSSL_CMP_H
19# define OPENSSL_CMP_H
8869ad4a
AK
20
21# include <openssl/opensslconf.h>
22# ifndef OPENSSL_NO_CMP
23
24# include <openssl/crmf.h>
25# include <openssl/cmperr.h>
7960dbec 26# include <openssl/cmp_util.h>
29f178bd 27# include <openssl/http.h>
8869ad4a
AK
28
29/* explicit #includes not strictly needed since implied by the above: */
50cd4768 30# include <openssl/types.h>
8869ad4a
AK
31# include <openssl/safestack.h>
32# include <openssl/x509.h>
33# include <openssl/x509v3.h>
34
235595c4 35# ifdef __cplusplus
8869ad4a
AK
36extern "C" {
37# endif
38
c4ad4e5b
DDO
39# define OSSL_CMP_PVNO_2 2
40# define OSSL_CMP_PVNO_3 3
41# define OSSL_CMP_PVNO OSSL_CMP_PVNO_2 /* v2 is the default */
8869ad4a
AK
42
43/*-
44 * PKIFailureInfo ::= BIT STRING {
45 * -- since we can fail in more than one way!
46 * -- More codes may be added in the future if/when required.
47 * badAlg (0),
48 * -- unrecognized or unsupported Algorithm Identifier
49 * badMessageCheck (1),
50 * -- integrity check failed (e.g., signature did not verify)
51 * badRequest (2),
52 * -- transaction not permitted or supported
53 * badTime (3),
54 * -- messageTime was not sufficiently close to the system time,
55 * -- as defined by local policy
56 * badCertId (4),
57 * -- no certificate could be found matching the provided criteria
58 * badDataFormat (5),
59 * -- the data submitted has the wrong format
60 * wrongAuthority (6),
61 * -- the authority indicated in the request is different from the
62 * -- one creating the response token
63 * incorrectData (7),
64 * -- the requester's data is incorrect (for notary services)
65 * missingTimeStamp (8),
66 * -- when the timestamp is missing but should be there
67 * -- (by policy)
68 * badPOP (9),
69 * -- the proof-of-possession failed
70 * certRevoked (10),
71 * -- the certificate has already been revoked
72 * certConfirmed (11),
73 * -- the certificate has already been confirmed
74 * wrongIntegrity (12),
75 * -- invalid integrity, password based instead of signature or
76 * -- vice versa
77 * badRecipientNonce (13),
78 * -- invalid recipient nonce, either missing or wrong value
79 * timeNotAvailable (14),
80 * -- the TSA's time source is not available
81 * unacceptedPolicy (15),
82 * -- the requested TSA policy is not supported by the TSA.
83 * unacceptedExtension (16),
84 * -- the requested extension is not supported by the TSA.
85 * addInfoNotAvailable (17),
86 * -- the additional information requested could not be
87 * -- understood or is not available
88 * badSenderNonce (18),
89 * -- invalid sender nonce, either missing or wrong size
90 * badCertTemplate (19),
91 * -- invalid cert. template or missing mandatory information
92 * signerNotTrusted (20),
93 * -- signer of the message unknown or not trusted
94 * transactionIdInUse (21),
95 * -- the transaction identifier is already in use
96 * unsupportedVersion (22),
97 * -- the version of the message is not supported
98 * notAuthorized (23),
99 * -- the sender was not authorized to make the preceding
100 * -- request or perform the preceding action
101 * systemUnavail (24),
102 * -- the request cannot be handled due to system unavailability
103 * systemFailure (25),
104 * -- the request cannot be handled due to system failure
105 * duplicateCertReq (26)
106 * -- certificate cannot be issued because a duplicate
107 * -- certificate already exists
108 * }
109 */
110# define OSSL_CMP_PKIFAILUREINFO_badAlg 0
111# define OSSL_CMP_PKIFAILUREINFO_badMessageCheck 1
112# define OSSL_CMP_PKIFAILUREINFO_badRequest 2
113# define OSSL_CMP_PKIFAILUREINFO_badTime 3
114# define OSSL_CMP_PKIFAILUREINFO_badCertId 4
115# define OSSL_CMP_PKIFAILUREINFO_badDataFormat 5
116# define OSSL_CMP_PKIFAILUREINFO_wrongAuthority 6
117# define OSSL_CMP_PKIFAILUREINFO_incorrectData 7
118# define OSSL_CMP_PKIFAILUREINFO_missingTimeStamp 8
119# define OSSL_CMP_PKIFAILUREINFO_badPOP 9
120# define OSSL_CMP_PKIFAILUREINFO_certRevoked 10
121# define OSSL_CMP_PKIFAILUREINFO_certConfirmed 11
122# define OSSL_CMP_PKIFAILUREINFO_wrongIntegrity 12
123# define OSSL_CMP_PKIFAILUREINFO_badRecipientNonce 13
124# define OSSL_CMP_PKIFAILUREINFO_timeNotAvailable 14
125# define OSSL_CMP_PKIFAILUREINFO_unacceptedPolicy 15
126# define OSSL_CMP_PKIFAILUREINFO_unacceptedExtension 16
127# define OSSL_CMP_PKIFAILUREINFO_addInfoNotAvailable 17
128# define OSSL_CMP_PKIFAILUREINFO_badSenderNonce 18
129# define OSSL_CMP_PKIFAILUREINFO_badCertTemplate 19
130# define OSSL_CMP_PKIFAILUREINFO_signerNotTrusted 20
131# define OSSL_CMP_PKIFAILUREINFO_transactionIdInUse 21
132# define OSSL_CMP_PKIFAILUREINFO_unsupportedVersion 22
133# define OSSL_CMP_PKIFAILUREINFO_notAuthorized 23
134# define OSSL_CMP_PKIFAILUREINFO_systemUnavail 24
135# define OSSL_CMP_PKIFAILUREINFO_systemFailure 25
136# define OSSL_CMP_PKIFAILUREINFO_duplicateCertReq 26
137# define OSSL_CMP_PKIFAILUREINFO_MAX 26
138# define OSSL_CMP_PKIFAILUREINFO_MAX_BIT_PATTERN \
235595c4 139 ((1 << (OSSL_CMP_PKIFAILUREINFO_MAX + 1)) - 1)
8869ad4a 140# if OSSL_CMP_PKIFAILUREINFO_MAX_BIT_PATTERN > INT_MAX
235595c4 141# error CMP_PKIFAILUREINFO_MAX bit pattern does not fit in type int
8869ad4a 142# endif
8869ad4a
AK
143typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
144
145# define OSSL_CMP_CTX_FAILINFO_badAlg (1 << 0)
146# define OSSL_CMP_CTX_FAILINFO_badMessageCheck (1 << 1)
147# define OSSL_CMP_CTX_FAILINFO_badRequest (1 << 2)
148# define OSSL_CMP_CTX_FAILINFO_badTime (1 << 3)
149# define OSSL_CMP_CTX_FAILINFO_badCertId (1 << 4)
150# define OSSL_CMP_CTX_FAILINFO_badDataFormat (1 << 5)
151# define OSSL_CMP_CTX_FAILINFO_wrongAuthority (1 << 6)
152# define OSSL_CMP_CTX_FAILINFO_incorrectData (1 << 7)
153# define OSSL_CMP_CTX_FAILINFO_missingTimeStamp (1 << 8)
154# define OSSL_CMP_CTX_FAILINFO_badPOP (1 << 9)
155# define OSSL_CMP_CTX_FAILINFO_certRevoked (1 << 10)
156# define OSSL_CMP_CTX_FAILINFO_certConfirmed (1 << 11)
157# define OSSL_CMP_CTX_FAILINFO_wrongIntegrity (1 << 12)
158# define OSSL_CMP_CTX_FAILINFO_badRecipientNonce (1 << 13)
159# define OSSL_CMP_CTX_FAILINFO_timeNotAvailable (1 << 14)
160# define OSSL_CMP_CTX_FAILINFO_unacceptedPolicy (1 << 15)
161# define OSSL_CMP_CTX_FAILINFO_unacceptedExtension (1 << 16)
162# define OSSL_CMP_CTX_FAILINFO_addInfoNotAvailable (1 << 17)
163# define OSSL_CMP_CTX_FAILINFO_badSenderNonce (1 << 18)
164# define OSSL_CMP_CTX_FAILINFO_badCertTemplate (1 << 19)
165# define OSSL_CMP_CTX_FAILINFO_signerNotTrusted (1 << 20)
166# define OSSL_CMP_CTX_FAILINFO_transactionIdInUse (1 << 21)
167# define OSSL_CMP_CTX_FAILINFO_unsupportedVersion (1 << 22)
168# define OSSL_CMP_CTX_FAILINFO_notAuthorized (1 << 23)
169# define OSSL_CMP_CTX_FAILINFO_systemUnavail (1 << 24)
170# define OSSL_CMP_CTX_FAILINFO_systemFailure (1 << 25)
171# define OSSL_CMP_CTX_FAILINFO_duplicateCertReq (1 << 26)
172
173/*-
174 * PKIStatus ::= INTEGER {
175 * accepted (0),
176 * -- you got exactly what you asked for
177 * grantedWithMods (1),
178 * -- you got something like what you asked for; the
179 * -- requester is responsible for ascertaining the differences
180 * rejection (2),
181 * -- you don't get it, more information elsewhere in the message
182 * waiting (3),
183 * -- the request body part has not yet been processed; expect to
184 * -- hear more later (note: proper handling of this status
185 * -- response MAY use the polling req/rep PKIMessages specified
186 * -- in Section 5.3.22; alternatively, polling in the underlying
187 * -- transport layer MAY have some utility in this regard)
188 * revocationWarning (4),
189 * -- this message contains a warning that a revocation is
190 * -- imminent
191 * revocationNotification (5),
192 * -- notification that a revocation has occurred
193 * keyUpdateWarning (6)
194 * -- update already done for the oldCertId specified in
195 * -- CertReqMsg
196 * }
197 */
19ddcc4c
DDO
198# define OSSL_CMP_PKISTATUS_request -3
199# define OSSL_CMP_PKISTATUS_trans -2
200# define OSSL_CMP_PKISTATUS_unspecified -1
201# define OSSL_CMP_PKISTATUS_accepted 0
202# define OSSL_CMP_PKISTATUS_grantedWithMods 1
203# define OSSL_CMP_PKISTATUS_rejection 2
204# define OSSL_CMP_PKISTATUS_waiting 3
205# define OSSL_CMP_PKISTATUS_revocationWarning 4
8869ad4a 206# define OSSL_CMP_PKISTATUS_revocationNotification 5
19ddcc4c 207# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
8869ad4a 208typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
d477484d 209
8869ad4a
AK
210DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
211
212# define OSSL_CMP_CERTORENCCERT_CERTIFICATE 0
213# define OSSL_CMP_CERTORENCCERT_ENCRYPTEDCERT 1
214
215/* data type declarations */
7960dbec
DDO
216typedef struct ossl_cmp_ctx_st OSSL_CMP_CTX;
217typedef struct ossl_cmp_pkiheader_st OSSL_CMP_PKIHEADER;
8869ad4a 218DECLARE_ASN1_FUNCTIONS(OSSL_CMP_PKIHEADER)
7960dbec 219typedef struct ossl_cmp_msg_st OSSL_CMP_MSG;
62dcd2aa 220DECLARE_ASN1_DUP_FUNCTION(OSSL_CMP_MSG)
8869ad4a 221DECLARE_ASN1_ENCODE_FUNCTIONS(OSSL_CMP_MSG, OSSL_CMP_MSG, OSSL_CMP_MSG)
7960dbec 222typedef struct ossl_cmp_certstatus_st OSSL_CMP_CERTSTATUS;
798f9329
MC
223{-
224 generate_stack_macros("OSSL_CMP_CERTSTATUS");
225-}
7960dbec 226typedef struct ossl_cmp_itav_st OSSL_CMP_ITAV;
62dcd2aa 227DECLARE_ASN1_DUP_FUNCTION(OSSL_CMP_ITAV)
798f9329
MC
228{-
229 generate_stack_macros("OSSL_CMP_ITAV");
230-}
7960dbec
DDO
231typedef struct ossl_cmp_revrepcontent_st OSSL_CMP_REVREPCONTENT;
232typedef struct ossl_cmp_pkisi_st OSSL_CMP_PKISI;
62dcd2aa
DDO
233DECLARE_ASN1_FUNCTIONS(OSSL_CMP_PKISI)
234DECLARE_ASN1_DUP_FUNCTION(OSSL_CMP_PKISI)
798f9329
MC
235{-
236 generate_stack_macros("OSSL_CMP_PKISI");
237-}
7960dbec 238typedef struct ossl_cmp_certrepmessage_st OSSL_CMP_CERTREPMESSAGE;
798f9329
MC
239{-
240 generate_stack_macros("OSSL_CMP_CERTREPMESSAGE");
241-}
7960dbec 242typedef struct ossl_cmp_pollrep_st OSSL_CMP_POLLREP;
8869ad4a 243typedef STACK_OF(OSSL_CMP_POLLREP) OSSL_CMP_POLLREPCONTENT;
7960dbec 244typedef struct ossl_cmp_certresponse_st OSSL_CMP_CERTRESPONSE;
798f9329
MC
245{-
246 generate_stack_macros("OSSL_CMP_CERTRESPONSE");
247-}
8869ad4a
AK
248typedef STACK_OF(ASN1_UTF8STRING) OSSL_CMP_PKIFREETEXT;
249
7960dbec
DDO
250/*
251 * function DECLARATIONS
252 */
253
8869ad4a
AK
254/* from cmp_asn.c */
255OSSL_CMP_ITAV *OSSL_CMP_ITAV_create(ASN1_OBJECT *type, ASN1_TYPE *value);
256void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
257 ASN1_TYPE *value);
258ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
259ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
260int OSSL_CMP_ITAV_push0_stack_item(STACK_OF(OSSL_CMP_ITAV) **itav_sk_p,
261 OSSL_CMP_ITAV *itav);
262void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
d477484d
DDO
263
264OSSL_CMP_ITAV *OSSL_CMP_ITAV_new_caCerts(const STACK_OF(X509) *caCerts);
265int OSSL_CMP_ITAV_get0_caCerts(const OSSL_CMP_ITAV *itav, STACK_OF(X509) **out);
266
8869ad4a 267void OSSL_CMP_MSG_free(OSSL_CMP_MSG *msg);
7960dbec
DDO
268
269/* from cmp_ctx.c */
b4250010 270OSSL_CMP_CTX *OSSL_CMP_CTX_new(OSSL_LIB_CTX *libctx, const char *propq);
7960dbec
DDO
271void OSSL_CMP_CTX_free(OSSL_CMP_CTX *ctx);
272int OSSL_CMP_CTX_reinit(OSSL_CMP_CTX *ctx);
2da163cb
DDO
273OSSL_LIB_CTX *OSSL_CMP_CTX_get0_libctx(const OSSL_CMP_CTX *ctx);
274const char *OSSL_CMP_CTX_get0_propq(const OSSL_CMP_CTX *ctx);
8f965908 275/* CMP general options: */
7960dbec 276# define OSSL_CMP_OPT_LOG_VERBOSITY 0
8f965908
DDO
277/* CMP transfer options: */
278# define OSSL_CMP_OPT_KEEP_ALIVE 10
279# define OSSL_CMP_OPT_MSG_TIMEOUT 11
280# define OSSL_CMP_OPT_TOTAL_TIMEOUT 12
281/* CMP request options: */
282# define OSSL_CMP_OPT_VALIDITY_DAYS 20
283# define OSSL_CMP_OPT_SUBJECTALTNAME_NODEFAULT 21
284# define OSSL_CMP_OPT_SUBJECTALTNAME_CRITICAL 22
285# define OSSL_CMP_OPT_POLICIES_CRITICAL 23
286# define OSSL_CMP_OPT_POPO_METHOD 24
287# define OSSL_CMP_OPT_IMPLICIT_CONFIRM 25
288# define OSSL_CMP_OPT_DISABLE_CONFIRM 26
289# define OSSL_CMP_OPT_REVOCATION_REASON 27
290/* CMP protection options: */
291# define OSSL_CMP_OPT_UNPROTECTED_SEND 30
292# define OSSL_CMP_OPT_UNPROTECTED_ERRORS 31
293# define OSSL_CMP_OPT_OWF_ALGNID 32
294# define OSSL_CMP_OPT_MAC_ALGNID 33
295# define OSSL_CMP_OPT_DIGEST_ALGNID 34
296# define OSSL_CMP_OPT_IGNORE_KEYUSAGE 35
297# define OSSL_CMP_OPT_PERMIT_TA_IN_EXTRACERTS_FOR_IR 36
7960dbec
DDO
298int OSSL_CMP_CTX_set_option(OSSL_CMP_CTX *ctx, int opt, int val);
299int OSSL_CMP_CTX_get_option(const OSSL_CMP_CTX *ctx, int opt);
300/* CMP-specific callback for logging and outputting the error queue: */
7e765f46 301int OSSL_CMP_CTX_set_log_cb(OSSL_CMP_CTX *ctx, OSSL_CMP_log_cb_t cb);
3dbc5156 302# define OSSL_CMP_CTX_set_log_verbosity(ctx, level) \
7960dbec 303 OSSL_CMP_CTX_set_option(ctx, OSSL_CMP_OPT_LOG_VERBOSITY, level)
c4a9e3eb 304void OSSL_CMP_CTX_print_errors(const OSSL_CMP_CTX *ctx);
7960dbec
DDO
305/* message transfer: */
306int OSSL_CMP_CTX_set1_serverPath(OSSL_CMP_CTX *ctx, const char *path);
4b1fe471 307int OSSL_CMP_CTX_set1_server(OSSL_CMP_CTX *ctx, const char *address);
7960dbec 308int OSSL_CMP_CTX_set_serverPort(OSSL_CMP_CTX *ctx, int port);
afe554c2
DDO
309int OSSL_CMP_CTX_set1_proxy(OSSL_CMP_CTX *ctx, const char *name);
310int OSSL_CMP_CTX_set1_no_proxy(OSSL_CMP_CTX *ctx, const char *names);
3ca28c9e 311# ifndef OPENSSL_NO_HTTP
29f178bd 312int OSSL_CMP_CTX_set_http_cb(OSSL_CMP_CTX *ctx, OSSL_HTTP_bio_cb_t cb);
7960dbec
DDO
313int OSSL_CMP_CTX_set_http_cb_arg(OSSL_CMP_CTX *ctx, void *arg);
314void *OSSL_CMP_CTX_get_http_cb_arg(const OSSL_CMP_CTX *ctx);
3ca28c9e 315# endif
7e765f46 316typedef OSSL_CMP_MSG *(*OSSL_CMP_transfer_cb_t) (OSSL_CMP_CTX *ctx,
29f178bd 317 const OSSL_CMP_MSG *req);
7e765f46 318int OSSL_CMP_CTX_set_transfer_cb(OSSL_CMP_CTX *ctx, OSSL_CMP_transfer_cb_t cb);
7960dbec
DDO
319int OSSL_CMP_CTX_set_transfer_cb_arg(OSSL_CMP_CTX *ctx, void *arg);
320void *OSSL_CMP_CTX_get_transfer_cb_arg(const OSSL_CMP_CTX *ctx);
321/* server authentication: */
322int OSSL_CMP_CTX_set1_srvCert(OSSL_CMP_CTX *ctx, X509 *cert);
323int OSSL_CMP_CTX_set1_expected_sender(OSSL_CMP_CTX *ctx, const X509_NAME *name);
324int OSSL_CMP_CTX_set0_trustedStore(OSSL_CMP_CTX *ctx, X509_STORE *store);
d477484d 325# define OSSL_CMP_CTX_set0_trusted OSSL_CMP_CTX_set0_trustedStore
7960dbec 326X509_STORE *OSSL_CMP_CTX_get0_trustedStore(const OSSL_CMP_CTX *ctx);
d477484d 327# define OSSL_CMP_CTX_get0_trusted OSSL_CMP_CTX_get0_trustedStore
0b86eefd
DDO
328int OSSL_CMP_CTX_set1_untrusted(OSSL_CMP_CTX *ctx, STACK_OF(X509) *certs);
329STACK_OF(X509) *OSSL_CMP_CTX_get0_untrusted(const OSSL_CMP_CTX *ctx);
7960dbec 330/* client authentication: */
63f1883d 331int OSSL_CMP_CTX_set1_cert(OSSL_CMP_CTX *ctx, X509 *cert);
15076c26
DDO
332int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
333 STACK_OF(X509) *candidates);
7960dbec
DDO
334int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
335int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
336 const unsigned char *ref, int len);
f42d6b7a 337int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
6f792f4d 338 const unsigned char *sec, int len);
7960dbec
DDO
339/* CMP message header and extra certificates: */
340int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
341int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
a2ede039 342int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
7960dbec
DDO
343int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
344 STACK_OF(X509) *extraCertsOut);
345/* certificate template: */
346int OSSL_CMP_CTX_set0_newPkey(OSSL_CMP_CTX *ctx, int priv, EVP_PKEY *pkey);
347EVP_PKEY *OSSL_CMP_CTX_get0_newPkey(const OSSL_CMP_CTX *ctx, int priv);
348int OSSL_CMP_CTX_set1_issuer(OSSL_CMP_CTX *ctx, const X509_NAME *name);
1d32ec20 349int OSSL_CMP_CTX_set1_serialNumber(OSSL_CMP_CTX *ctx, const ASN1_INTEGER *sn);
7960dbec 350int OSSL_CMP_CTX_set1_subjectName(OSSL_CMP_CTX *ctx, const X509_NAME *name);
143be474
DDO
351int OSSL_CMP_CTX_push1_subjectAltName(OSSL_CMP_CTX *ctx,
352 const GENERAL_NAME *name);
7960dbec
DDO
353int OSSL_CMP_CTX_set0_reqExtensions(OSSL_CMP_CTX *ctx, X509_EXTENSIONS *exts);
354int OSSL_CMP_CTX_reqExtensions_have_SAN(OSSL_CMP_CTX *ctx);
355int OSSL_CMP_CTX_push0_policy(OSSL_CMP_CTX *ctx, POLICYINFO *pinfo);
356int OSSL_CMP_CTX_set1_oldCert(OSSL_CMP_CTX *ctx, X509 *cert);
357int OSSL_CMP_CTX_set1_p10CSR(OSSL_CMP_CTX *ctx, const X509_REQ *csr);
358/* misc body contents: */
359int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
360/* certificate confirmation: */
7e765f46 361typedef int (*OSSL_CMP_certConf_cb_t) (OSSL_CMP_CTX *ctx, X509 *cert,
7960dbec 362 int fail_info, const char **txt);
15076c26
DDO
363int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info,
364 const char **text);
7e765f46 365int OSSL_CMP_CTX_set_certConf_cb(OSSL_CMP_CTX *ctx, OSSL_CMP_certConf_cb_t cb);
7960dbec
DDO
366int OSSL_CMP_CTX_set_certConf_cb_arg(OSSL_CMP_CTX *ctx, void *arg);
367void *OSSL_CMP_CTX_get_certConf_cb_arg(const OSSL_CMP_CTX *ctx);
368/* result fetching: */
369int OSSL_CMP_CTX_get_status(const OSSL_CMP_CTX *ctx);
370OSSL_CMP_PKIFREETEXT *OSSL_CMP_CTX_get0_statusString(const OSSL_CMP_CTX *ctx);
371int OSSL_CMP_CTX_get_failInfoCode(const OSSL_CMP_CTX *ctx);
372# define OSSL_CMP_PKISI_BUFLEN 1024
b6fbef11 373X509 *OSSL_CMP_CTX_get0_validatedSrvCert(const OSSL_CMP_CTX *ctx);
7960dbec 374X509 *OSSL_CMP_CTX_get0_newCert(const OSSL_CMP_CTX *ctx);
39082af2 375STACK_OF(X509) *OSSL_CMP_CTX_get1_newChain(const OSSL_CMP_CTX *ctx);
7960dbec
DDO
376STACK_OF(X509) *OSSL_CMP_CTX_get1_caPubs(const OSSL_CMP_CTX *ctx);
377STACK_OF(X509) *OSSL_CMP_CTX_get1_extraCertsIn(const OSSL_CMP_CTX *ctx);
7960dbec
DDO
378int OSSL_CMP_CTX_set1_transactionID(OSSL_CMP_CTX *ctx,
379 const ASN1_OCTET_STRING *id);
380int OSSL_CMP_CTX_set1_senderNonce(OSSL_CMP_CTX *ctx,
381 const ASN1_OCTET_STRING *nonce);
8869ad4a 382
4dde554c 383/* from cmp_status.c */
62dcd2aa 384char *OSSL_CMP_CTX_snprint_PKIStatus(const OSSL_CMP_CTX *ctx, char *buf,
4dde554c 385 size_t bufsize);
62dcd2aa
DDO
386char *OSSL_CMP_snprint_PKIStatusInfo(const OSSL_CMP_PKISI *statusInfo,
387 char *buf, size_t bufsize);
388OSSL_CMP_PKISI *
389OSSL_CMP_STATUSINFO_new(int status, int fail_info, const char *text);
4dde554c
DDO
390
391/* from cmp_hdr.c */
143be474
DDO
392ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_transactionID(const
393 OSSL_CMP_PKIHEADER *hdr);
4dde554c
DDO
394ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
395
3dbc5156 396/* from cmp_msg.c */
3dbc5156 397OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
7df56ada 398int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
143be474 399int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
4b0c27d4 400int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
593d6554 401OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
c6313780
MC
402OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
403 const char *propq);
1202de44 404int OSSL_CMP_MSG_write(const char *file, const OSSL_CMP_MSG *msg);
ae8483d2
DDO
405OSSL_CMP_MSG *d2i_OSSL_CMP_MSG_bio(BIO *bio, OSSL_CMP_MSG **msg);
406int i2d_OSSL_CMP_MSG_bio(BIO *bio, const OSSL_CMP_MSG *msg);
3dbc5156 407
31b28ad9
DDO
408/* from cmp_vfy.c */
409int OSSL_CMP_validate_msg(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *msg);
c4a9e3eb 410int OSSL_CMP_validate_cert_path(const OSSL_CMP_CTX *ctx,
31b28ad9
DDO
411 X509_STORE *trusted_store, X509 *cert);
412
afe554c2 413/* from cmp_http.c */
3ca28c9e 414# ifndef OPENSSL_NO_HTTP
afe554c2
DDO
415OSSL_CMP_MSG *OSSL_CMP_MSG_http_perform(OSSL_CMP_CTX *ctx,
416 const OSSL_CMP_MSG *req);
3ca28c9e 417# endif
afe554c2 418
62dcd2aa
DDO
419/* from cmp_server.c */
420typedef struct ossl_cmp_srv_ctx_st OSSL_CMP_SRV_CTX;
421OSSL_CMP_MSG *OSSL_CMP_SRV_process_request(OSSL_CMP_SRV_CTX *srv_ctx,
422 const OSSL_CMP_MSG *req);
423OSSL_CMP_MSG * OSSL_CMP_CTX_server_perform(OSSL_CMP_CTX *client_ctx,
424 const OSSL_CMP_MSG *req);
b4250010 425OSSL_CMP_SRV_CTX *OSSL_CMP_SRV_CTX_new(OSSL_LIB_CTX *libctx, const char *propq);
62dcd2aa
DDO
426void OSSL_CMP_SRV_CTX_free(OSSL_CMP_SRV_CTX *srv_ctx);
427typedef OSSL_CMP_PKISI *(*OSSL_CMP_SRV_cert_request_cb_t)
428 (OSSL_CMP_SRV_CTX *srv_ctx, const OSSL_CMP_MSG *req, int certReqId,
429 const OSSL_CRMF_MSG *crm, const X509_REQ *p10cr,
430 X509 **certOut, STACK_OF(X509) **chainOut, STACK_OF(X509) **caPubs);
431typedef OSSL_CMP_PKISI *(*OSSL_CMP_SRV_rr_cb_t)(OSSL_CMP_SRV_CTX *srv_ctx,
432 const OSSL_CMP_MSG *req,
433 const X509_NAME *issuer,
434 const ASN1_INTEGER *serial);
435typedef int (*OSSL_CMP_SRV_genm_cb_t)(OSSL_CMP_SRV_CTX *srv_ctx,
436 const OSSL_CMP_MSG *req,
437 const STACK_OF(OSSL_CMP_ITAV) *in,
438 STACK_OF(OSSL_CMP_ITAV) **out);
439typedef void (*OSSL_CMP_SRV_error_cb_t)(OSSL_CMP_SRV_CTX *srv_ctx,
440 const OSSL_CMP_MSG *req,
441 const OSSL_CMP_PKISI *statusInfo,
442 const ASN1_INTEGER *errorCode,
143be474 443 const OSSL_CMP_PKIFREETEXT *errDetails);
62dcd2aa
DDO
444typedef int (*OSSL_CMP_SRV_certConf_cb_t)(OSSL_CMP_SRV_CTX *srv_ctx,
445 const OSSL_CMP_MSG *req,
446 int certReqId,
447 const ASN1_OCTET_STRING *certHash,
448 const OSSL_CMP_PKISI *si);
449typedef int (*OSSL_CMP_SRV_pollReq_cb_t)(OSSL_CMP_SRV_CTX *srv_ctx,
450 const OSSL_CMP_MSG *req, int certReqId,
451 OSSL_CMP_MSG **certReq,
452 int64_t *check_after);
453int OSSL_CMP_SRV_CTX_init(OSSL_CMP_SRV_CTX *srv_ctx, void *custom_ctx,
454 OSSL_CMP_SRV_cert_request_cb_t process_cert_request,
455 OSSL_CMP_SRV_rr_cb_t process_rr,
456 OSSL_CMP_SRV_genm_cb_t process_genm,
457 OSSL_CMP_SRV_error_cb_t process_error,
458 OSSL_CMP_SRV_certConf_cb_t process_certConf,
459 OSSL_CMP_SRV_pollReq_cb_t process_pollReq);
460OSSL_CMP_CTX *OSSL_CMP_SRV_CTX_get0_cmp_ctx(const OSSL_CMP_SRV_CTX *srv_ctx);
461void *OSSL_CMP_SRV_CTX_get0_custom_ctx(const OSSL_CMP_SRV_CTX *srv_ctx);
462int OSSL_CMP_SRV_CTX_set_send_unprotected_errors(OSSL_CMP_SRV_CTX *srv_ctx,
463 int val);
464int OSSL_CMP_SRV_CTX_set_accept_unprotected(OSSL_CMP_SRV_CTX *srv_ctx, int val);
465int OSSL_CMP_SRV_CTX_set_accept_raverified(OSSL_CMP_SRV_CTX *srv_ctx, int val);
466int OSSL_CMP_SRV_CTX_set_grant_implicit_confirm(OSSL_CMP_SRV_CTX *srv_ctx,
467 int val);
468
7e765f46 469/* from cmp_client.c */
299e0f1e
DDO
470X509 *OSSL_CMP_exec_certreq(OSSL_CMP_CTX *ctx, int req_type,
471 const OSSL_CRMF_MSG *crm);
472# define OSSL_CMP_IR 0
473# define OSSL_CMP_CR 2
474# define OSSL_CMP_P10CR 4
475# define OSSL_CMP_KUR 7
476# define OSSL_CMP_exec_IR_ses(ctx) \
477 OSSL_CMP_exec_certreq(ctx, OSSL_CMP_IR, NULL)
478# define OSSL_CMP_exec_CR_ses(ctx) \
479 OSSL_CMP_exec_certreq(ctx, OSSL_CMP_CR, NULL)
480# define OSSL_CMP_exec_P10CR_ses(ctx) \
481 OSSL_CMP_exec_certreq(ctx, OSSL_CMP_P10CR, NULL)
482# define OSSL_CMP_exec_KUR_ses(ctx) \
483 OSSL_CMP_exec_certreq(ctx, OSSL_CMP_KUR, NULL)
484int OSSL_CMP_try_certreq(OSSL_CMP_CTX *ctx, int req_type,
485 const OSSL_CRMF_MSG *crm, int *checkAfter);
3d46c81a 486int OSSL_CMP_exec_RR_ses(OSSL_CMP_CTX *ctx);
7e765f46
DDO
487STACK_OF(OSSL_CMP_ITAV) *OSSL_CMP_exec_GENM_ses(OSSL_CMP_CTX *ctx);
488
d477484d
DDO
489/* from cmp_genm.c */
490int OSSL_CMP_get_caCerts(OSSL_CMP_CTX *ctx, STACK_OF(X509) **out);
491
3dbc5156 492# ifdef __cplusplus
8869ad4a 493}
3dbc5156 494# endif
62dcd2aa
DDO
495# endif /* !defined(OPENSSL_NO_CMP) */
496#endif /* !defined(OPENSSL_CMP_H) */