1EVP_CAMELLIA_128_ECB(3ossl) OpenSSL EVP_CAMELLIA_128_ECB(3ossl)
2
3
4
6 EVP_camellia_128_cbc, EVP_camellia_192_cbc, EVP_camellia_256_cbc,
7 EVP_camellia_128_cfb, EVP_camellia_192_cfb, EVP_camellia_256_cfb,
8 EVP_camellia_128_cfb1, EVP_camellia_192_cfb1, EVP_camellia_256_cfb1,
9 EVP_camellia_128_cfb8, EVP_camellia_192_cfb8, EVP_camellia_256_cfb8,
10 EVP_camellia_128_cfb128, EVP_camellia_192_cfb128,
11 EVP_camellia_256_cfb128, EVP_camellia_128_ctr, EVP_camellia_192_ctr,
12 EVP_camellia_256_ctr, EVP_camellia_128_ecb, EVP_camellia_192_ecb,
13 EVP_camellia_256_ecb, EVP_camellia_128_ofb, EVP_camellia_192_ofb,
14 EVP_camellia_256_ofb - EVP Camellia cipher
15
17 #include <openssl/evp.h>
18
19 const EVP_CIPHER *EVP_ciphername(void)
20
21 EVP_ciphername is used a placeholder for any of the described cipher
22 functions, such as EVP_camellia_128_cbc.
23
25 The Camellia encryption algorithm for EVP.
26
27 EVP_camellia_128_cbc(), EVP_camellia_192_cbc(), EVP_camellia_256_cbc(),
28 EVP_camellia_128_cfb(), EVP_camellia_192_cfb(), EVP_camellia_256_cfb(),
29 EVP_camellia_128_cfb1(), EVP_camellia_192_cfb1(),
30 EVP_camellia_256_cfb1(), EVP_camellia_128_cfb8(),
31 EVP_camellia_192_cfb8(), EVP_camellia_256_cfb8(),
32 EVP_camellia_128_cfb128(), EVP_camellia_192_cfb128(),
33 EVP_camellia_256_cfb128(), EVP_camellia_128_ctr(),
34 EVP_camellia_192_ctr(), EVP_camellia_256_ctr(), EVP_camellia_128_ecb(),
35 EVP_camellia_192_ecb(), EVP_camellia_256_ecb(), EVP_camellia_128_ofb(),
36 EVP_camellia_192_ofb(), EVP_camellia_256_ofb()
37 Camellia for 128, 192 and 256 bit keys in the following modes: CBC,
38 CFB with 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift,
39 CTR, ECB and OFB.
40
42 Developers should be aware of the negative performance implications of
43 calling these functions multiple times and should consider using
44 EVP_CIPHER_fetch(3) instead. See "Performance" in crypto(7) for
45 further information.
46
48 These functions return an EVP_CIPHER structure that contains the
49 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
50 details of the EVP_CIPHER structure.
51
53 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
54
56 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
57
58 Licensed under the Apache License 2.0 (the "License"). You may not use
59 this file except in compliance with the License. You can obtain a copy
60 in the file LICENSE in the source distribution or at
61 <https://www.openssl.org/source/license.html>.
62
63
64
653.1.1 2023-08-31 EVP_CAMELLIA_128_ECB(3ossl)