1gnutls_x509_crt_verify(3) gnutls gnutls_x509_crt_verify(3)
2
3
4
6 gnutls_x509_crt_verify - API function
7
9 #include <gnutls/x509.h>
10
11 int gnutls_x509_crt_verify(gnutls_x509_crt_t cert, const
12 gnutls_x509_crt_t * CA_list, int CA_list_length, unsigned int flags,
13 unsigned int * verify);
14
16 gnutls_x509_crt_t cert
17 is the certificate to be verified
18
19 const gnutls_x509_crt_t * CA_list
20 is one certificate that is considered to be trusted one
21
22 int CA_list_length
23 holds the number of CA certificate in CA_list
24
25 unsigned int flags
26 Flags that may be used to change the verification algo‐
27 rithm. Use OR of the gnutls_certificate_verify_flags enu‐
28 merations.
29
30 unsigned int * verify
31 will hold the certificate verification output.
32
34 This function will try to verify the given certificate and return its
35 status. Note that a verification error does not imply a negative return
36 status. In that case the verify status is set.
37
39 On success, GNUTLS_E_SUCCESS [22m(0) is returned, otherwise a negative
40 error value.
41
43 Report bugs to <bugs@gnutls.org>.
44 Home page: http://www.gnutls.org
45
46
48 Copyright © 2001-2014 Free Software Foundation, Inc..
49 Copying and distribution of this file, with or without modification,
50 are permitted in any medium without royalty provided the copyright
51 notice and this notice are preserved.
52
54 The full documentation for gnutls is maintained as a Texinfo manual.
55 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
56 visit
57
58 http://www.gnutls.org/manual/
59
60gnutls 3.3.29 gnutls_x509_crt_verify(3)