1gnutls_x509_rdn_get_oid(3) gnutls gnutls_x509_rdn_get_oid(3)
2
3
4
6 gnutls_x509_rdn_get_oid - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_rdn_get_oid(const gnutls_datum_t * idn, unsigned indx,
12 void * buf, size_t * buf_size);
13
15 const gnutls_datum_t * idn
16 should contain a DER encoded RDN sequence
17
18 unsigned indx
19 Indicates which OID to return. Use 0 for the first one.
20
21 void * buf a pointer to a structure to hold the peer's name OID
22
23 size_t * buf_size
24 holds the size of buf
25
27 This function will return the specified Object identifier, of the RDN
28 sequence.
29
31 On success, GNUTLS_E_SUCCESS [22m(0) is returned, or GNUTLS_E_SHORT_MEM‐
32 ORY_BUFFER is returned and * buf_size is updated if the provided buffer
33 is not long enough, otherwise a negative error value.
34
36 2.4.0
37
39 Report bugs to <bugs@gnutls.org>.
40 Home page: http://www.gnutls.org
41
42
44 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
45 Copying and distribution of this file, with or without modification,
46 are permitted in any medium without royalty provided the copyright
47 notice and this notice are preserved.
48
50 The full documentation for gnutls is maintained as a Texinfo manual.
51 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
52 visit
53
54 http://www.gnutls.org/manual/
55
56gnutls 3.6.5 gnutls_x509_rdn_get_oid(3)