]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/OSSL_CMP_MSG_get0_header.pod
Chunk 8 of CMP contribution to OpenSSL: CMP server and cmp_mock_srv.c for testing
[thirdparty/openssl.git] / doc / man3 / OSSL_CMP_MSG_get0_header.pod
CommitLineData
3dbc5156
DDO
1=pod
2
3=head1 NAME
4
62dcd2aa
DDO
5OSSL_CMP_MSG_get0_header,
6OSSL_d2i_CMP_MSG_bio,
7OSSL_i2d_CMP_MSG_bio
3dbc5156
DDO
8- function(s) manipulating CMP messages
9
10=head1 SYNOPSIS
11
12 #include <openssl/cmp.h>
13
14 OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
62dcd2aa
DDO
15 OSSL_CMP_MSG *OSSL_d2i_CMP_MSG_bio(BIO *bio, OSSL_CMP_MSG **msg);
16 int OSSL_i2d_CMP_MSG_bio(BIO *bio, const OSSL_CMP_MSG *msg);
3dbc5156
DDO
17
18=head1 DESCRIPTION
19
20OSSL_CMP_MSG_get0_header returns the header of the given CMP message.
21
62dcd2aa
DDO
22OSSL_d2i_CMP_MSG_bio parses an ASN.1-encoded OSSL_CMP_MSG from the BIO I<bio>.
23It assigns a pointer to the new structure to I<*msg> if I<msg> is not NULL.
24
25OSSL_i2d_CMP_MSG_bio writes the OSSL_CMP_MSG I<msg> in ASN.1 encoding to BIO I<bio>.
26
3dbc5156
DDO
27=head1 NOTES
28
29CMP is defined in RFC 4210.
30
31=head1 RETURN VALUES
32
62dcd2aa 33OSSL_CMP_MSG_get0_header() returns the intended pointer value as described above
3dbc5156
DDO
34or NULL if the respective entry does not exist and on error.
35
62dcd2aa
DDO
36OSSL_d2i_CMP_MSG_bio() returns the parsed message or NULL on error.
37
38OSSL_i2d_CMP_MSG_bio() returns 1 on success or 0 on error.
39
3dbc5156
DDO
40=head1 HISTORY
41
42The OpenSSL CMP support was added in OpenSSL 3.0.
43
44=head1 COPYRIGHT
45
46Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
47
48Licensed under the Apache License 2.0 (the "License"). You may not use
49this file except in compliance with the License. You can obtain a copy
50in the file LICENSE in the source distribution or at
51L<https://www.openssl.org/source/license.html>.
52
53=cut