1gnutls_x509_crt_import(3) gnutls gnutls_x509_crt_import(3)
2
3
4
6 gnutls_x509_crt_import - This function will import a DER or PEM encoded
7 Certificate
8
10 #include <gnutls/x509.h>
11
12 int gnutls_x509_crt_import(gnutls_x509_crt_t cert, const gnutls_datum_t
13 * data, gnutls_x509_crt_fmt_t format);
14
16 gnutls_x509_crt_t cert
17 The structure to store the parsed certificate.
18
19 const gnutls_datum_t * data
20 The DER or PEM encoded certificate.
21
22 gnutls_x509_crt_fmt_t format
23 One of DER or PEM
24
26 This function will convert the given DER or PEM encoded Certificate to
27 the native gnutls_x509_crt_t format. The output will be stored in cert.
28
29 If the Certificate is PEM encoded it should have a header of "X509 CER‐
30 TIFICATE", or "CERTIFICATE".
31
32 Returns 0 on success.
33
35 Report bugs to <bug-gnutls@gnu.org>.
36
38 Copyright © 2006 Free Software Foundation.
39 Permission is granted to make and distribute verbatim copies of this
40 manual provided the copyright notice and this permission notice are
41 preserved on all copies.
42
44 The full documentation for gnutls is maintained as a Texinfo manual.
45 If the info and gnutls programs are properly installed at your site,
46 the command
47
48 info gnutls
49
50 should give you access to the complete manual.
51
52
53
54gnutls 1.6.3 gnutls_x509_crt_import(3)