Constify X509_PUBKEY_get(), X509_PUBKEY_get0(), and X509_PUBKEY_get0_param()
[openssl.git] / doc / man3 / OSSL_CRMF_MSG_get0_tmpl.pod
1 =pod
2
3 =head1 NAME
4
5 OSSL_CRMF_MSG_get0_tmpl,
6 OSSL_CRMF_CERTTEMPLATE_get0_serialNumber,
7 OSSL_CRMF_CERTTEMPLATE_get0_issuer,
8 OSSL_CRMF_CERTID_get0_serialNumber,
9 OSSL_CRMF_CERTID_get0_issuer,
10 OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert,
11 OSSL_CRMF_MSG_get_certReqId
12 - functions reading from CRMF CertReqMsg structures
13
14 =head1 SYNOPSIS
15
16  #include <openssl/crmf.h>
17
18  OSSL_CRMF_CERTTEMPLATE *OSSL_CRMF_MSG_get0_tmpl(const OSSL_CRMF_MSG *crm);
19  ASN1_INTEGER
20  *OSSL_CRMF_CERTTEMPLATE_get0_serialNumber(const OSSL_CRMF_CERTTEMPLATE *tmpl);
21  X509_NAME
22  *OSSL_CRMF_CERTTEMPLATE_get0_issuer(const OSSL_CRMF_CERTTEMPLATE *tmpl);
23
24  ASN1_INTEGER *OSSL_CRMF_CERTID_get0_serialNumber(const OSSL_CRMF_CERTID *cid);
25  const X509_NAME *OSSL_CRMF_CERTID_get0_issuer(const OSSL_CRMF_CERTID *cid);
26
27  X509
28  *OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert(const OSSL_CRMF_ENCRYPTEDVALUE *ecert,
29                                         EVP_PKEY *pkey);
30
31  int OSSL_CRMF_MSG_get_certReqId(const OSSL_CRMF_MSG *crm);
32
33
34 =head1 DESCRIPTION
35
36 OSSL_CRMF_MSG_get0_tmpl() retrieves the certificate template of B<crm>.
37
38 OSSL_CRMF_CERTTEMPLATE_get0_serialNumber() retrieves the serialNumber of the
39 given certificate template B<tmpl>.
40
41 OSSL_CRMF_CERTTEMPLATE_get0_issuer() retrieves the issuer name of the
42 given certificate template B<tmpl>.
43
44 OSSL_CRMF_CERTID_get0_serialNumber retrieves the serialNumber
45 of the given CertId B<cid>.
46
47 OSSL_CRMF_CERTID_get0_issuer retrieves the issuer name
48 of the given CertId B<cid>, which must be of ASN.1 type GEN_DIRNAME.
49
50 OSSL_CRMF_ENCRYPTEDVALUE_get1_encCert() decrypts the certificate in the given
51 encryptedValue B<ecert>, using the private key B<pkey>.
52 This is needed for the indirect PoP method as in RFC 4210 section 5.2.8.2.
53 The function returns the decrypted certificate as a copy, leaving its ownership
54 with the caller, who is responsible for freeing it.
55
56 OSSL_CRMF_MSG_get_certReqId() retrieves the certReqId of B<crm>.
57
58
59 =head1 RETURN VALUES
60
61 OSSL_CRMF_MSG_get_certReqId() returns the certificate request ID as a
62 non-negative integer or -1 on error.
63
64 All other functions return a pointer with the intended result or NULL on error.
65
66 =head1 SEE ALSO
67
68 B<RFC 4211>
69
70 =head1 HISTORY
71
72 The OpenSSL CRMF support was added in OpenSSL 3.0.
73
74 =head1 COPYRIGHT
75
76 Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
77
78 Licensed under the Apache License 2.0 (the "License").  You may not use
79 this file except in compliance with the License.  You can obtain a copy
80 in the file LICENSE in the source distribution or at
81 L<https://www.openssl.org/source/license.html>.
82
83 =cut