]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/OSSL_CMP_ITAV_set0.pod
Clarify documentation of SSL_CTX_set_verify client side behavior
[thirdparty/openssl.git] / doc / man3 / OSSL_CMP_ITAV_set0.pod
CommitLineData
8869ad4a
AK
1=pod
2
3=head1 NAME
4
5OSSL_CMP_ITAV_create,
6OSSL_CMP_ITAV_set0,
7OSSL_CMP_ITAV_get0_type,
8OSSL_CMP_ITAV_get0_value,
9OSSL_CMP_ITAV_push0_stack_item
10- OSSL_CMP_ITAV utility functions
11
12=head1 SYNOPSIS
13
14 #include <openssl/cmp.h>
15 OSSL_CMP_ITAV *OSSL_CMP_ITAV_create(ASN1_OBJECT *type, ASN1_TYPE *value);
16 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
17 ASN1_TYPE *value);
18 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
19 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
20
21 int OSSL_CMP_ITAV_push0_stack_item(STACK_OF(OSSL_CMP_ITAV) **itav_sk_p,
22 OSSL_CMP_ITAV *itav);
23
24=head1 DESCRIPTION
25
26ITAV is short for InfoTypeAndValue. This type is defined in RFC 4210
27section 5.3.19 and Appendix F. It is used at various places in CMP messages,
28e.g., in the generalInfo PKIHeader field, to hold a key-value pair.
29
30OSSL_CMP_ITAV_create() creates a new OSSL_CMP_ITAV structure and fills it in.
31It combines B<OSSL_CMP_ITAV_new()> and B<OSSL_CMP_ITAV_set0>.
32
33OSSL_CMP_ITAV_set0() sets the B<itav> with an infoType of B<type> and an
34infoValue of B<value>. This function uses the pointers B<type> and B<value>
35internally, so they must B<not> be freed up after the call.
36
37OSSL_CMP_ITAV_get0_type() returns a direct pointer to the infoType in the
38B<itav>.
39
40OSSL_CMP_ITAV_get0_value() returns a direct pointer to the infoValue in
41the B<itav> as generic ASN1_TYPE*.
42
43OSSL_CMP_ITAV_push0_stack_item() pushes B<itav> to the stack pointed to
44by B<*itav_sk_p>. It creates a new stack if B<*itav_sk_p> points to NULL.
45
46=head1 NOTES
47
48CMP is defined in RFC 4210 (and CRMF in RFC 4211).
49
50=head1 RETURN VALUES
51
52OSSL_CMP_ITAV_create() returns a pointer to the ITAV structure on success,
53or NULL on error.
54
55OSSL_CMP_ITAV_set0() does not return a value.
56
57OSSL_CMP_ITAV_get0_type() and OSSL_CMP_ITAV_get0_value()
58return the respective pointer or NULL if their input is NULL.
59
60OSSL_CMP_ITAV_push0_stack_item() returns 1 on success, 0 on error.
61
62=head1 EXAMPLE
63
64The following code creates and sets a structure representing a generic
65InfoTypeAndValue sequence, using an OID created from text as type, and an
66integer as value. Afterwards, it is pushed to the OSSL_CMP_CTX to be later
67included in the requests' PKIHeader's genInfo field.
68
69 ASN1_OBJECT *type = OBJ_txt2obj("1.2.3.4.5", 1);
70 if (type == NULL) ...
71
72 ASN1_INTEGER *asn1int = ASN1_INTEGER_new();
73 if (asn1int == NULL || !ASN1_INTEGER_set(asn1int, 12345)) ...
74
75 ASN1_TYPE *val = ASN1_TYPE_new();
76 if (val == NULL) ...
77 ASN1_TYPE_set(val, V_ASN1_INTEGER, asn1int);
78
79 OSSL_CMP_ITAV *itav = OSSL_CMP_ITAV_create(type, val);
80 if (itav == NULL) ...
81
82 OSSL_CMP_CTX *ctx = OSSL_CMP_CTX_new();
83 if (ctx == NULL || !OSSL_CMP_CTX_geninfo_push0_ITAV(ctx, itav)) {
84 OSSL_CMP_ITAV_free(itav); /* also frees type and val */
85 goto err;
86 }
87
88 ...
89
90 OSSL_CMP_CTX_free(ctx); /* also frees itav */
91
92=head1 SEE ALSO
93
94L<OSSL_CMP_CTX_new(3)>, L<OSSL_CMP_CTX_free(3)>, L<ASN1_TYPE_set(3)>
95
96=head1 COPYRIGHT
97
98Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
99
100Licensed under the Apache License 2.0 (the "License"). You may not use
101this file except in compliance with the License. You can obtain a copy
102in the file LICENSE in the source distribution or at
103L<https://www.openssl.org/source/license.html>.
104
105=cut