1gnutls_x509_crq_set_extension_by_oid(g3n)utglnsutls_x509_crq_set_extension_by_oid(3)
2
3
4
6 gnutls_x509_crq_set_extension_by_oid - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crq_set_extension_by_oid(gnutls_x509_crq_t crq, const
12 char * oid, const void * buf, size_t sizeof_buf, unsigned int criti‐
13 cal);
14
16 gnutls_x509_crq_t crq
17 a certificate of type gnutls_x509_crq_t
18
19 const char * oid
20 holds an Object Identifier in null terminated string
21
22 const void * buf
23 a pointer to a DER encoded data
24
25 size_t sizeof_buf
26 holds the size of buf
27
28 unsigned int critical
29 should be non-zero if the extension is to be marked as
30 critical
31
33 This function will set an the extension, by the specified OID, in the
34 certificate request. The extension data should be binary data DER en‐
35 coded.
36
38 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise a negative er‐
39 ror value.
40
42 Report bugs to <bugs@gnutls.org>.
43 Home page: https://www.gnutls.org
44
45
47 Copyright © 2001- Free Software Foundation, Inc., and others.
48 Copying and distribution of this file, with or without modification,
49 are permitted in any medium without royalty provided the copyright no‐
50 tice 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 https://www.gnutls.org/manual/
58
59gnutls 3.7g.n8utls_x509_crq_set_extension_by_oid(3)