]> git.ipfire.org Git - thirdparty/openssl.git/blob - 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
1 =pod
2
3 =head1 NAME
4
5 OSSL_CMP_MSG_get0_header,
6 OSSL_d2i_CMP_MSG_bio,
7 OSSL_i2d_CMP_MSG_bio
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);
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);
17
18 =head1 DESCRIPTION
19
20 OSSL_CMP_MSG_get0_header returns the header of the given CMP message.
21
22 OSSL_d2i_CMP_MSG_bio parses an ASN.1-encoded OSSL_CMP_MSG from the BIO I<bio>.
23 It assigns a pointer to the new structure to I<*msg> if I<msg> is not NULL.
24
25 OSSL_i2d_CMP_MSG_bio writes the OSSL_CMP_MSG I<msg> in ASN.1 encoding to BIO I<bio>.
26
27 =head1 NOTES
28
29 CMP is defined in RFC 4210.
30
31 =head1 RETURN VALUES
32
33 OSSL_CMP_MSG_get0_header() returns the intended pointer value as described above
34 or NULL if the respective entry does not exist and on error.
35
36 OSSL_d2i_CMP_MSG_bio() returns the parsed message or NULL on error.
37
38 OSSL_i2d_CMP_MSG_bio() returns 1 on success or 0 on error.
39
40 =head1 HISTORY
41
42 The OpenSSL CMP support was added in OpenSSL 3.0.
43
44 =head1 COPYRIGHT
45
46 Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
47
48 Licensed under the Apache License 2.0 (the "License"). You may not use
49 this file except in compliance with the License. You can obtain a copy
50 in the file LICENSE in the source distribution or at
51 L<https://www.openssl.org/source/license.html>.
52
53 =cut