1EVP_CAMELLIA(3) OpenSSL EVP_CAMELLIA(3)
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 These functions return an EVP_CIPHER structure that contains the
43 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
44 details of the EVP_CIPHER structure.
45
47 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
48
50 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
51
52 Licensed under the OpenSSL license (the "License"). You may not use
53 this file except in compliance with the License. You can obtain a copy
54 in the file LICENSE in the source distribution or at
55 <https://www.openssl.org/source/license.html>.
56
57
58
591.1.1l 2021-09-15 EVP_CAMELLIA(3)