1gnutls_pubkey_verify_data(3) gnutls gnutls_pubkey_verify_data(3)
2
3
4
6 gnutls_pubkey_verify_data - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_pubkey_verify_data(gnutls_pubkey_t pubkey, unsigned int
12 flags, const gnutls_datum_t * data, const gnutls_datum_t * signature);
13
15 gnutls_pubkey_t pubkey
16 Holds the public key
17
18 unsigned int flags
19 should be 0 for now
20
21 const gnutls_datum_t * data
22 holds the data to be signed
23
24 const gnutls_datum_t * signature
25 contains the signature
26
28 This function will verify the given signed data, using the parameters
29 from the certificate.
30
32 In case of a verification failure GNUTLS_E_PK_SIG_VERIFY_FAILED is
33 returned, and a positive code on success.
34
36 2.12.0
37
39 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
40 http://www.gnu.org/software/gnutls/ General help using GNU software:
41 http://www.gnu.org/gethelp/
42
44 Copyright © 2008 Free Software Foundation.
45 Copying and distribution of this file, with or without modification,
46 are permitted in any medium without royalty provided the copyright
47 notice and this notice are preserved.
48
50 The full documentation for gnutls is maintained as a Texinfo manual.
51 If the info and gnutls programs are properly installed at your site,
52 the command
53
54 info gnutls
55
56 should give you access to the complete manual.
57
58
59
60gnutls 2.12.6.1 gnutls_pubkey_verify_data(3)