1EVP_IDEA_CBC(3) OpenSSL EVP_IDEA_CBC(3)
2
3
4
6 EVP_idea_cbc, EVP_idea_cfb, EVP_idea_ecb, EVP_idea_ofb - EVP IDEA
7 cipher
8
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_idea_cbc(void)
13 const EVP_CIPHER *EVP_idea_cfb(void)
14 const EVP_CIPHER *EVP_idea_ecb(void)
15 const EVP_CIPHER *EVP_idea_ofb(void)
16
18 The IDEA encryption algorithm for EVP.
19
20 EVP_idea_cbc(), EVP_idea_cfb(), EVP_idea_ecb(), EVP_idea_ofb()
21 The IDEA encryption algorithm in CBC, CFB, ECB and OFB modes
22 respectively.
23
25 These functions return an EVP_CIPHER structure that contains the
26 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
27 details of the EVP_CIPHER structure.
28
30 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
31
33 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
34
35 Licensed under the OpenSSL license (the "License"). You may not use
36 this file except in compliance with the License. You can obtain a copy
37 in the file LICENSE in the source distribution or at
38 <https://www.openssl.org/source/license.html>.
39
40
41
421.1.1 2018-09-11 EVP_IDEA_CBC(3)