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 type
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/decryption
23
24 const gnutls_datum_t * iv
25 the IV to use (if not applicable set NULL)
26
28 This function will initialize the handle context to be usable for
29 encryption/decryption of data. This will effectively use the current
30 crypto backend in use by gnutls or the cryptographic accelerator in
31 use.
32
34 Zero or a negative error code on error.
35
37 2.10.0
38
40 Report bugs to <bugs@gnutls.org>.
41 Home page: http://www.gnutls.org
42
43
45 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
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 /usr/share/doc/gnutls/ directory does not contain the HTML form
53 visit
54
55 http://www.gnutls.org/manual/
56
57gnutls 3.6.5 gnutls_cipher_init(3)