1gnutls_cipher_decrypt2(3) gnutls gnutls_cipher_decrypt2(3)
2
3
4
6 gnutls_cipher_decrypt2 - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_cipher_decrypt2(gnutls_cipher_hd_t handle, const void *
12 ciphertext, size_t ciphertextlen, void * text, size_t textlen);
13
15 gnutls_cipher_hd_t handle
16 is a gnutls_cipher_hd_t structure.
17
18 const void * ciphertext
19 the data to encrypt
20
21 size_t ciphertextlen
22 The length of data to encrypt
23
24 void * text the decrypted data
25
26 size_t textlen
27 The available length for decrypted data
28
30 This function will decrypt the given data using the algorithm specified
31 by the context.
32
34 Zero or a negative value on error.
35
37 2.10.0
38
40 Report bugs to <bug-gnutls@gnu.org>. GnuTLS home page:
41 http://www.gnu.org/software/gnutls/ General help using GNU software:
42 http://www.gnu.org/gethelp/
43
45 Copyright © 2008 Free Software Foundation.
46 Copying and distribution of this file, with or without modification,
47 are permitted in any medium without royalty provided the copyright
48 notice and this notice are preserved.
49
51 The full documentation for gnutls is maintained as a Texinfo manual.
52 If the info and gnutls programs are properly installed at your site,
53 the command
54
55 info gnutls
56
57 should give you access to the complete manual.
58
59
60
61gnutls 2.12.6.1 gnutls_cipher_decrypt2(3)