1gnutls_cipher_encrypt2(3) gnutls gnutls_cipher_encrypt2(3)
2
3
4
6 gnutls_cipher_encrypt2 - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_cipher_encrypt2(gnutls_cipher_hd_t handle, void * text,
12 size_t textlen, void * ciphertext, size_t ciphertextlen);
13
15 gnutls_cipher_hd_t handle
16 is a gnutls_cipher_hd_t structure.
17
18 void * text the data to encrypt
19
20 size_t textlen
21 The length of data to encrypt
22
23 void * ciphertext
24 the encrypted data
25
26 size_t ciphertextlen
27 The available length for encrypted data
28
30 This function will encrypt 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_encrypt2(3)