1gnutls_x509_crq_get_attribute_info(3)gnutlsgnutls_x509_crq_get_attribute_info(3)
2
3
4
6 gnutls_x509_crq_get_attribute_info - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crq_get_attribute_info(gnutls_x509_crq_t crq, unsigned
12 indx, void * oid, size_t * sizeof_oid);
13
15 gnutls_x509_crq_t crq
16 should contain a gnutls_x509_crq_t type
17
18 unsigned indx
19 Specifies which attribute number to get. Use (0) to get the
20 first one.
21
22 void * oid a pointer to a structure to hold the OID
23
24 size_t * sizeof_oid
25 initially holds the maximum size of oid , on return holds
26 actual size of oid .
27
29 This function will return the requested attribute OID in the certifi‐
30 cate, and the critical flag for it. The attribute OID will be stored
31 as a string in the provided buffer. Use
32 gnutls_x509_crq_get_attribute_data() to extract the data.
33
34 If the buffer provided is not long enough to hold the output, then *
35 sizeof_oid is updated and GNUTLS_E_SHORT_MEMORY_BUFFER will be
36 returned.
37
39 On success, GNUTLS_E_SUCCESS [22m(0) is returned, otherwise a negative
40 error code in case of an error. If your have reached the last exten‐
41 sion available GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE will be returned.
42
44 2.8.0
45
47 Report bugs to <bugs@gnutls.org>.
48 Home page: https://www.gnutls.org
49
50
52 Copyright © 2001-2019 Free Software Foundation, Inc., and others.
53 Copying and distribution of this file, with or without modification,
54 are permitted in any medium without royalty provided the copyright
55 notice and this notice are preserved.
56
58 The full documentation for gnutls is maintained as a Texinfo manual.
59 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
60 visit
61
62 https://www.gnutls.org/manual/
63
64gnutls 3.6.8gnutls_x509_crq_get_attribute_info(3)