1gnutls_x509_crq_get_dn_by_oid(3)    gnutls    gnutls_x509_crq_get_dn_by_oid(3)
2
3
4

NAME

6       gnutls_x509_crq_get_dn_by_oid  -  This function returns the Certificate
7       request subject's distinguished name
8

SYNOPSIS

10       #include <gnutls/x509.h>
11
12       int gnutls_x509_crq_get_dn_by_oid(gnutls_x509_crq_t crq, const  char  *
13       oid, int indx, unsigned int raw_flag, void * buf, size_t * sizeof_buf);
14

ARGUMENTS

16       gnutls_x509_crq_t crq
17                   should contain a gnutls_x509_crq_t structure
18
19       const char * oid
20                   holds an Object Identified in null terminated string
21
22       int indx    In case multiple same OIDs exist in the RDN, this specifies
23                   which to send. Use zero to get the first one.
24
25       unsigned int raw_flag
26                   If non zero returns the raw DER data of the DN part.
27
28       void * buf  a pointer to a structure to hold the name (may be null)
29
30       size_t * sizeof_buf
31                   initially holds the size of buf
32

DESCRIPTION

34       This function will extract the part of  the  name  of  the  Certificate
35       request subject, specified by the given OID. The output will be encoded
36       as described in RFC2253. The output  string  will  be  ASCII  or  UTF-8
37       encoded, depending on the certificate data.
38
39       Some  helper  macros with popular OIDs can be found in gnutls/x509.h If
40       raw flag is zero, this function will only return known  OIDs  as  text.
41       Other  OIDs will be DER encoded, as described in RFC2253 -- in hex for‐
42       mat with a 'using gnutls_x509_dn_oid_known().
43
44       If buf is null then only the size will be filled.
45
46       Returns GNUTLS_E_SHORT_MEMORY_BUFFER if the provided buffer is not long
47       enough,  and  in  that  case  the  *sizeof_buf will be updated with the
48       required size.  On success 0 is returned.
49

REPORTING BUGS

51       Report bugs to <bug-gnutls@gnu.org>.
52
54       Copyright © 2006 Free Software Foundation.
55       Permission is granted to make and distribute verbatim  copies  of  this
56       manual  provided  the  copyright  notice and this permission notice are
57       preserved on all copies.
58

SEE ALSO

60       The full documentation for gnutls is maintained as  a  Texinfo  manual.
61       If  the  info  and gnutls programs are properly installed at your site,
62       the command
63
64              info gnutls
65
66       should give you access to the complete manual.
67
68
69
70gnutls                               1.6.3    gnutls_x509_crq_get_dn_by_oid(3)
Impressum