1EVP_IDEA_CBC(3) OpenSSL EVP_IDEA_CBC(3)
2
3
4
6 EVP_idea_cbc, EVP_idea_cfb, EVP_idea_cfb64, EVP_idea_ecb, EVP_idea_ofb
7 - EVP IDEA 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_cfb64(void)
15 const EVP_CIPHER *EVP_idea_ecb(void)
16 const EVP_CIPHER *EVP_idea_ofb(void)
17
19 The IDEA encryption algorithm for EVP.
20
21 EVP_idea_cbc(), EVP_idea_cfb(), EVP_idea_cfb64(), EVP_idea_ecb(),
22 EVP_idea_ofb()
23 The IDEA encryption algorithm in CBC, CFB, ECB and OFB modes
24 respectively.
25
27 These functions return an EVP_CIPHER structure that contains the
28 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
29 details of the EVP_CIPHER structure.
30
32 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
33
35 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
36
37 Licensed under the OpenSSL license (the "License"). You may not use
38 this file except in compliance with the License. You can obtain a copy
39 in the file LICENSE in the source distribution or at
40 <https://www.openssl.org/source/license.html>.
41
42
43
441.1.1i 2021-01-26 EVP_IDEA_CBC(3)