1gnutls_cipher_init(3) gnutls gnutls_cipher_init(3)
2
3
4
6 gnutls_cipher_init - API function
7
9 #include <gnutls/crypto.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 error code on error.
34
36 2.10.0
37
39 Report bugs to <bugs@gnutls.org>.
40 Home page: http://www.gnutls.org
41
42
44 Copyright © 2001-2014 Free Software Foundation, Inc..
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 /usr/share/doc/gnutls/ directory does not contain the HTML form
52 visit
53
54 http://www.gnutls.org/manual/
55
56gnutls 3.3.29 gnutls_cipher_init(3)