]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/OSSL_CRMF_MSG_set1_regInfo_certReq.pod
CMP: Add missing getter functions to CRMF API and CMP API
[thirdparty/openssl.git] / doc / man3 / OSSL_CRMF_MSG_set1_regInfo_certReq.pod
CommitLineData
2a3b52ea
DO
1=pod
2
3=head1 NAME
4
7df56ada 5OSSL_CRMF_MSG_get0_regInfo_utf8Pairs,
2a3b52ea 6OSSL_CRMF_MSG_set1_regInfo_utf8Pairs,
7df56ada 7OSSL_CRMF_MSG_get0_regInfo_certReq,
2a3b52ea 8OSSL_CRMF_MSG_set1_regInfo_certReq
7df56ada 9- functions getting or setting CRMF Registration Info
2a3b52ea
DO
10
11=head1 SYNOPSIS
12
13 #include <openssl/crmf.h>
14
7df56ada
DDO
15 ASN1_UTF8STRING
16 *OSSL_CRMF_MSG_get0_regInfo_utf8Pairs(const OSSL_CRMF_MSG *msg);
2a3b52ea
DO
17 int OSSL_CRMF_MSG_set1_regInfo_utf8Pairs(OSSL_CRMF_MSG *msg,
18 const ASN1_UTF8STRING *utf8pairs);
7df56ada
DDO
19 OSSL_CRMF_CERTREQUEST
20 *OSSL_CRMF_MSG_get0_regInfo_certReq(const OSSL_CRMF_MSG *msg);
2a3b52ea
DO
21 int OSSL_CRMF_MSG_set1_regInfo_certReq(OSSL_CRMF_MSG *msg,
22 const OSSL_CRMF_CERTREQUEST *cr);
23
24=head1 DESCRIPTION
25
7df56ada
DDO
26OSSL_CRMF_MSG_get0_regInfo_utf8Pairs() returns the first utf8Pairs regInfo
27in the given I<msg>, if present.
28
6d1f50b5
DDO
29OSSL_CRMF_MSG_set1_regInfo_utf8Pairs() adds a copy of the given I<utf8pairs>
30value as utf8Pairs regInfo to the given I<msg>. See RFC 4211 section 7.1.
2a3b52ea 31
7df56ada
DDO
32OSSL_CRMF_MSG_get0_regInfo_certReq() returns the first certReq regInfo
33in the given I<msg>, if present.
34
6d1f50b5
DDO
35OSSL_CRMF_MSG_set1_regInfo_certReq() adds a copy of the given I<cr> value
36as certReq regInfo to the given I<msg>. See RFC 4211 section 7.2.
2a3b52ea
DO
37
38=head1 RETURN VALUES
39
7df56ada
DDO
40All get0_*() functions return the respective pointer value, NULL if not present.
41
42All set1_*() functions return 1 on success, 0 on error.
2a3b52ea
DO
43
44=head1 NOTES
45
7df56ada
DDO
46Calling the set1_*() functions multiple times
47adds multiple instances of the respective
6d1f50b5 48control to the regInfo structure of the given I<msg>. While RFC 4211 expects
2a3b52ea
DO
49multiple utf8Pairs in one regInfo structure, it does not allow multiple certReq.
50
51=head1 SEE ALSO
52
53RFC 4211
54
7960dbec
DDO
55=head1 HISTORY
56
57The OpenSSL CRMF support was added in OpenSSL 3.0.
58
2a3b52ea
DO
59=head1 COPYRIGHT
60
eec0ad10 61Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
2a3b52ea 62
ce9b9964 63Licensed under the Apache License 2.0 (the "License"). You may not use
2a3b52ea
DO
64this file except in compliance with the License. You can obtain a copy
65in the file LICENSE in the source distribution or at
66L<https://www.openssl.org/source/license.html>.
67
68=cut