1gnutls_certificate_verify_peers(3) gnutls gnutls_certificate_verify_peers(3)
2
3
4
6 gnutls_certificate_verify_peers - return the peer's certificate verifi‐
7 cation status
8
10 #include <gnutls/gnutls.h>
11
12 int gnutls_certificate_verify_peers(gnutls_session_t session);
13
15 gnutls_session_t session
16 is a gnutls session
17
19 This function will try to verify the peer's certificate and return its
20 status (trusted, invalid etc.). However you must also check the peer's
21 name in order to check if the verified certificate belongs to the
22 actual peer.
23
24 This function uses gnutls_x509_crt_list_verify().
25
27 one or more of the gnutls_certificate_status_t enumerated elements bit‐
28 wise or'd, or a negative value on error.
29
31 Use gnutls_certificate_verify_peers2() instead.
32
34 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
35 http://www.gnu.org/software/gnutls/ General help using GNU software:
36 http://www.gnu.org/gethelp/
37
39 Copyright © 2008 Free Software Foundation.
40 Copying and distribution of this file, with or without modification,
41 are permitted in any medium without royalty provided the copyright
42 notice and this notice are preserved.
43
45 The full documentation for gnutls is maintained as a Texinfo manual.
46 If the info and gnutls programs are properly installed at your site,
47 the command
48
49 info gnutls
50
51 should give you access to the complete manual.
52
53
54
55gnutls 2.8.6 gnutls_certificate_verify_peers(3)