1gnutls_x509_crt_set_key_purpose_oid(3g)nutlgsnutls_x509_crt_set_key_purpose_oid(3)
2
3
4
6 gnutls_x509_crt_set_key_purpose_oid - Sets the Certificate's key pur‐
7 pose OIDs
8
10 #include <gnutls/x509.h>
11
12 int gnutls_x509_crt_set_key_purpose_oid(gnutls_x509_crt_t cert, const
13 void * oid, unsigned int critical);
14
16 gnutls_x509_crt_t cert
17 a certificate of type gnutls_x509_crt_t
18
19 const void * oid
20 a pointer to a null terminated string that holds the OID
21
22 unsigned int critical
23 Whether this extension will be critical or not
24
26 This function will set the key purpose OIDs of the Certificate. These
27 are stored in the Extended Key Usage extension (2.5.29.37) See the
28 GNUTLS_KP_* definitions for human readable names.
29
30 Subsequent calls to this function will append OIDs to the OID list.
31
33 On success, GNUTLS_E_SUCCESS (zero) is returned, otherwise an error
34 code is returned.
35
37 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
38 http://www.gnu.org/software/gnutls/ General help using GNU software:
39 http://www.gnu.org/gethelp/
40
42 Copyright © 2008 Free Software Foundation.
43 Copying and distribution of this file, with or without modification,
44 are permitted in any medium without royalty provided the copyright
45 notice and this notice are preserved.
46
48 The full documentation for gnutls is maintained as a Texinfo manual.
49 If the info and gnutls programs are properly installed at your site,
50 the command
51
52 info gnutls
53
54 should give you access to the complete manual.
55
56
57
58gnutls 2.8.g6nutls_x509_crt_set_key_purpose_oid(3)