1EVP_IDEA_CBC(3ossl) OpenSSL EVP_IDEA_CBC(3ossl)
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 Developers should be aware of the negative performance implications of
28 calling these functions multiple times and should consider using
29 EVP_CIPHER_fetch(3) instead. See "Performance" in crypto(7) for
30 further information.
31
33 These functions return an EVP_CIPHER structure that contains the
34 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
35 details of the EVP_CIPHER structure.
36
38 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
39
41 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
42
43 Licensed under the Apache License 2.0 (the "License"). You may not use
44 this file except in compliance with the License. You can obtain a copy
45 in the file LICENSE in the source distribution or at
46 <https://www.openssl.org/source/license.html>.
47
48
49
503.1.1 2023-08-31 EVP_IDEA_CBC(3ossl)