OSSL_CMP_MSG_get0_header.pod 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. =pod
  2. =head1 NAME
  3. OSSL_CMP_MSG_get0_header,
  4. OSSL_CMP_MSG_update_transactionID,
  5. d2i_OSSL_CMP_MSG_bio,
  6. i2d_OSSL_CMP_MSG_bio
  7. - function(s) manipulating CMP messages
  8. =head1 SYNOPSIS
  9. #include <openssl/cmp.h>
  10. OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
  11. int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
  12. OSSL_CMP_MSG *d2i_OSSL_CMP_MSG_bio(BIO *bio, OSSL_CMP_MSG **msg);
  13. int i2d_OSSL_CMP_MSG_bio(BIO *bio, const OSSL_CMP_MSG *msg);
  14. =head1 DESCRIPTION
  15. OSSL_CMP_MSG_get0_header() returns the header of the given CMP message.
  16. OSSL_CMP_MSG_update_transactionID() updates the transactionID field
  17. in the header of the given message according to the CMP_CTX.
  18. This requires re-protecting the message (if it was protected).
  19. d2i_OSSL_CMP_MSG_bio() parses an ASN.1-encoded OSSL_CMP_MSG from the BIO I<bio>.
  20. It assigns a pointer to the new structure to I<*msg> if I<msg> is not NULL.
  21. i2d_OSSL_CMP_MSG_bio() writes the OSSL_CMP_MSG I<msg> in ASN.1 encoding
  22. to BIO I<bio>.
  23. =head1 NOTES
  24. CMP is defined in RFC 4210.
  25. =head1 RETURN VALUES
  26. OSSL_CMP_MSG_get0_header() returns the intended pointer value as described above
  27. or NULL if the respective entry does not exist and on error.
  28. d2i_OSSL_CMP_MSG_bio() returns the parsed message or NULL on error.
  29. i2d_OSSL_CMP_MSG_bio() and OSSL_CMP_MSG_update_transactionID()
  30. return 1 on success, 0 on error.
  31. =head1 HISTORY
  32. The OpenSSL CMP support was added in OpenSSL 3.0.
  33. =head1 COPYRIGHT
  34. Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
  35. Licensed under the Apache License 2.0 (the "License"). You may not use
  36. this file except in compliance with the License. You can obtain a copy
  37. in the file LICENSE in the source distribution or at
  38. L<https://www.openssl.org/source/license.html>.
  39. =cut