Certificate Management Protocol (CMP, RFC 4210) extension to OpenSSL
[openssl.git] / doc / man3 / OSSL_CRMF_MSG_set_validity.pod
1 =pod
2
3 =head1 NAME
4
5 OSSL_CRMF_MSG_set_validity,
6 OSSL_CRMF_MSG_set_certReqId,
7 OSSL_CRMF_CERTTEMPLATE_fill,
8 OSSL_CRMF_MSG_set0_extensions,
9 OSSL_CRMF_MSG_push0_extension,
10 OSSL_CRMF_MSG_create_popo,
11 OSSL_CRMF_MSGS_verify_popo
12 - functions populating and verifying CRMF CertReqMsg structures
13
14 =head1 SYNOPSIS
15
16  #include <openssl/crmf.h>
17
18  int OSSL_CRMF_MSG_set_validity(OSSL_CRMF_MSG *crm, time_t from, time_t to);
19
20  int OSSL_CRMF_MSG_set_certReqId(OSSL_CRMF_MSG *crm, const int rid);
21
22  int OSSL_CRMF_CERTTEMPLATE_fill(OSSL_CRMF_CERTTEMPLATE *tmpl,
23                                  const EVP_PKEY *pubkey,
24                                  const X509_NAME *subject,
25                                  const X509_NAME *issuer,
26                                  const ASN1_INTEGER *serial);
27
28  int OSSL_CRMF_MSG_set0_extensions(OSSL_CRMF_MSG *crm,
29                                    X509_EXTENSIONS *exts);
30
31  int OSSL_CRMF_MSG_push0_extension(OSSL_CRMF_MSG *crm,
32                                    const X509_EXTENSION *ext);
33
34  int OSSL_CRMF_MSG_create_popo(OSSL_CRMF_MSG *crm, const EVP_PKEY *pkey,
35                                int dgst, int ppmtd);
36
37  int OSSL_CRMF_MSGS_verify_popo(const OSSL_CRMF_MSGS *reqs,
38                                 int rid, int acceptRAVerified);
39
40 =head1 DESCRIPTION
41
42 OSSL_CRMF_MSG_set_validity() sets B<from> as notBefore and B<to> as notAfter
43 as the validity in the certTemplate of B<crm>.
44
45 OSSL_CRMF_MSG_set_certReqId() sets B<rid> as the certReqId of B<crm>.
46
47 OSSL_CRMF_CERTTEMPLATE_fill() sets those fields of the certTemplate B<tmpl>
48 for which non-NULL values are provided: B<pubkey>, B<subject>, B<issuer>,
49 and/or B<serial>. The arguments are not consumed.
50
51 OSSL_CRMF_MSG_set0_extensions() sets B<exts> as the extensions in the
52 certTemplate of B<crm>. Consumes B<exts>.
53
54 OSSL_CRMF_MSG_push0_extension() pushes the X509 extension B<ext> to the
55 extensions in the certTemplate of B<crm>.  Consumes B<ext>.
56
57 OSSL_CRMF_MSG_create_popo() creates and sets the Proof-of-Possession (POP)
58 according to the method B<ppmtd> for B<pkey> to B<crm>. In case the method is
59 OSSL_CRMF_POPO_SIGNATURE, POP is calculated using the B<dgst>.
60
61 B<ppmtd> can be one of the following:
62
63 =over 8
64
65 =item * OSSL_CRMF_POPO_NONE       - RFC 4211, section 4, POP field omitted.
66 CA/RA uses out-of-band method to verify POP. Note that servers may fail in this
67 case, resulting for instance in HTTP error code 500 (Internal error).
68
69 =item * OSSL_CRMF_POPO_RAVERIFIED - RFC 4211, section 4, explicit indication
70 that the RA has already verified the POP.
71
72 =item * OSSL_CRMF_POPO_SIGNATURE  - RFC 4211, section 4.1, only case 3 supported
73 so far.
74
75 =item * OSSL_CRMF_POPO_KEYENC     - RFC 4211, section 4.2, only indirect method
76 (subsequentMessage/enccert) supported,
77 challenge-response exchange (challengeResp) not yet supported.
78
79 =item * OSSL_CRMF_POPO_KEYAGREE   - RFC 4211, section 4.3, not yet supported.
80
81 =back
82
83 OSSL_CRMF_MSGS_verify_popo verifies the Proof-of-Possession of the request with
84 the given B<rid> in the list of B<reqs>. Optionally accepts RAVerified.
85
86 =head1 RETURN VALUES
87
88 All functions return 1 on success, 0 on error.
89
90 =head1 SEE ALSO
91
92 RFC 4211
93
94 =head1 COPYRIGHT
95
96 Copyright 2007-2018 The OpenSSL Project Authors. All Rights Reserved.
97
98 Licensed under the OpenSSL license (the "License").  You may not use
99 this file except in compliance with the License.  You can obtain a copy
100 in the file LICENSE in the source distribution or at
101 L<https://www.openssl.org/source/license.html>.
102
103 =cut