1gnutls_x509_crq_get_attribute_by_oid(g3n)utglnsutls_x509_crq_get_attribute_by_oid(3)
2
3
4
6 gnutls_x509_crq_get_attribute_by_oid - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crq_get_attribute_by_oid(gnutls_x509_crq_t crq, const
12 char * oid, int indx, void * buf, size_t * buf_size);
13
15 gnutls_x509_crq_t crq
16 should contain a gnutls_x509_crq_t structure
17
18 const char * oid
19 holds an Object Identifier in null-terminated string
20
21 int indx In case multiple same OIDs exist in the attribute list,
22 this specifies which to get, use (0) to get the first one
23
24 void * buf a pointer to a structure to hold the attribute data (may be
25 NULL)
26
27 size_t * buf_size
28 initially holds the size of buf
29
31 This function will return the attribute in the certificate request
32 specified by the given Object ID. The attribute will be DER encoded.
33
34 Attributes in a certificate request is an optional set of data appended
35 to the request. Their interpretation depends on the CA policy.
36
38 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise a negative
39 error value.
40
42 Report bugs to <bugs@gnutls.org>.
43 Home page: http://www.gnutls.org
44
45
47 Copyright © 2001-2014 Free Software Foundation, Inc..
48 Copying and distribution of this file, with or without modification,
49 are permitted in any medium without royalty provided the copyright
50 notice and this notice are preserved.
51
53 The full documentation for gnutls is maintained as a Texinfo manual.
54 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
55 visit
56
57 http://www.gnutls.org/manual/
58
59gnutls 3.3.g2n9utls_x509_crq_get_attribute_by_oid(3)