1OSSL_CMP_HDR_GET0_TRANSACTIONID(3osslO)penSOSSLSL_CMP_HDR_GET0_TRANSACTIONID(3ossl)
2
3
4
6 OSSL_CMP_HDR_get0_transactionID, OSSL_CMP_HDR_get0_recipNonce -
7 functions manipulating CMP message headers
8
10 #include <openssl/cmp.h>
11
12 ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_transactionID(const
13 OSSL_CMP_PKIHEADER *hdr);
14 ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const
15 OSSL_CMP_PKIHEADER *hdr);
16
18 OSSL_CMP_HDR_get0_transactionID returns the transaction ID of the given
19 PKIHeader.
20
21 OSSL_CMP_HDR_get0_recipNonce returns the recipient nonce of the given
22 PKIHeader.
23
25 CMP is defined in RFC 4210.
26
28 The functions return the intended pointer value as described above or
29 NULL if the respective entry does not exist and on error.
30
32 The OpenSSL CMP support was added in OpenSSL 3.0.
33
35 Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
36
37 Licensed under the Apache License 2.0 (the "License"). You may not use
38 this file except in compliance with the License. You can obtain a copy
39 in the file LICENSE in the source distribution or at
40 <https://www.openssl.org/source/license.html>.
41
42
43
443.1.1 2023-08O-S3S1L_CMP_HDR_GET0_TRANSACTIONID(3ossl)