2019-11-05 09:56:59 +01:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2020-03-10 10:29:46 +01:00
|
|
|
OSSL_CMP_MSG_get0_header,
|
2020-04-29 18:06:43 +02:00
|
|
|
OSSL_CMP_MSG_update_transactionID,
|
2020-03-11 13:42:49 +01:00
|
|
|
d2i_OSSL_CMP_MSG_bio,
|
|
|
|
i2d_OSSL_CMP_MSG_bio
|
2019-11-05 09:56:59 +01:00
|
|
|
- function(s) manipulating CMP messages
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/cmp.h>
|
|
|
|
|
|
|
|
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
2020-04-29 18:06:43 +02:00
|
|
|
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
2020-03-11 13:42:49 +01:00
|
|
|
OSSL_CMP_MSG *d2i_OSSL_CMP_MSG_bio(BIO *bio, OSSL_CMP_MSG **msg);
|
|
|
|
int i2d_OSSL_CMP_MSG_bio(BIO *bio, const OSSL_CMP_MSG *msg);
|
2019-11-05 09:56:59 +01:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2020-04-29 18:06:43 +02:00
|
|
|
OSSL_CMP_MSG_get0_header() returns the header of the given CMP message.
|
2019-11-05 09:56:59 +01:00
|
|
|
|
2020-04-29 18:06:43 +02:00
|
|
|
OSSL_CMP_MSG_update_transactionID() updates the transactionID field
|
|
|
|
in the header of the given message according to the CMP_CTX.
|
|
|
|
This requires re-protecting the message (if it was protected).
|
|
|
|
|
|
|
|
d2i_OSSL_CMP_MSG_bio() parses an ASN.1-encoded OSSL_CMP_MSG from the BIO I<bio>.
|
2020-03-10 10:29:46 +01:00
|
|
|
It assigns a pointer to the new structure to I<*msg> if I<msg> is not NULL.
|
|
|
|
|
2020-04-29 18:06:43 +02:00
|
|
|
i2d_OSSL_CMP_MSG_bio() writes the OSSL_CMP_MSG I<msg> in ASN.1 encoding
|
2020-03-11 13:42:49 +01:00
|
|
|
to BIO I<bio>.
|
2020-03-10 10:29:46 +01:00
|
|
|
|
2019-11-05 09:56:59 +01:00
|
|
|
=head1 NOTES
|
|
|
|
|
|
|
|
CMP is defined in RFC 4210.
|
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
2020-03-10 10:29:46 +01:00
|
|
|
OSSL_CMP_MSG_get0_header() returns the intended pointer value as described above
|
2019-11-05 09:56:59 +01:00
|
|
|
or NULL if the respective entry does not exist and on error.
|
|
|
|
|
2020-03-11 13:42:49 +01:00
|
|
|
d2i_OSSL_CMP_MSG_bio() returns the parsed message or NULL on error.
|
2020-03-10 10:29:46 +01:00
|
|
|
|
2020-04-29 18:06:43 +02:00
|
|
|
i2d_OSSL_CMP_MSG_bio() and OSSL_CMP_MSG_update_transactionID()
|
|
|
|
return 1 on success, 0 on error.
|
2020-03-10 10:29:46 +01:00
|
|
|
|
2019-11-05 09:56:59 +01:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The OpenSSL CMP support was added in OpenSSL 3.0.
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2020-04-23 13:55:52 +01:00
|
|
|
Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-11-05 09:56:59 +01:00
|
|
|
|
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|