1gnutls_cipher_init(3) gnutls gnutls_cipher_init(3)
2
3
4
6 gnutls_cipher_init - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_cipher_init(gnutls_cipher_hd_t * handle, gnutls_cipher_algo‐
12 rithm_t cipher, const gnutls_datum_t * key, const gnutls_datum_t * iv);
13
15 gnutls_cipher_hd_t * handle
16 is a gnutls_cipher_hd_t structure.
17
18 gnutls_cipher_algorithm_t cipher
19 the encryption algorithm to use
20
21 const gnutls_datum_t * key
22 The key to be used for encryption
23
24 const gnutls_datum_t * iv
25 The IV to use (if not applicable set NULL)
26
28 This function will initialize an context that can be used for encryp‐
29 tion/decryption of data. This will effectively use the current crypto
30 backend in use by gnutls or the cryptographic accelerator in use.
31
33 Zero or a negative value on error.
34
36 2.10.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_cipher_init(3)