1gnutls_openpgp_crt_check_hostname(3)gnutlsgnutls_openpgp_crt_check_hostname(3)
2
3
4
6 gnutls_openpgp_crt_check_hostname - compare hostname with the key's
7 hostname
8
10 #include <gnutls/openpgp.h>
11
12 int gnutls_openpgp_crt_check_hostname(gnutls_openpgp_crt_t key, const
13 char * hostname);
14
16 gnutls_openpgp_crt_t key
17 should contain a gnutls_openpgp_crt_t structure
18
19 const char * hostname
20 A null terminated string that contains a DNS name
21
23 This function will check if the given key's owner matches the given
24 hostname. This is a basic implementation of the matching described in
25 RFC2818 (HTTPS), which takes into account wildcards.
26
28 GNUTLS_E_SUCCESS on success, or an error code.
29
31 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
32 http://www.gnu.org/software/gnutls/ General help using GNU software:
33 http://www.gnu.org/gethelp/
34
36 Copyright © 2008 Free Software Foundation.
37 Copying and distribution of this file, with or without modification,
38 are permitted in any medium without royalty provided the copyright
39 notice and this notice are preserved.
40
42 The full documentation for gnutls is maintained as a Texinfo manual.
43 If the info and gnutls programs are properly installed at your site,
44 the command
45
46 info gnutls
47
48 should give you access to the complete manual.
49
50
51
52gnutls 2.8.6gnutls_openpgp_crt_check_hostname(3)