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_ctr, EVP_camellia_192_ctr, EVP_camellia_256_ctr,
11 EVP_camellia_128_ecb, EVP_camellia_192_ecb, EVP_camellia_256_ecb,
12 EVP_camellia_128_ofb, EVP_camellia_192_ofb, EVP_camellia_256_ofb - EVP
13 Camellia cipher
14
16 #include <openssl/evp.h>
17
18 const EVP_CIPHER *EVP_ciphername(void)
19
20 EVP_ciphername is used a placeholder for any of the described cipher
21 functions, such as EVP_camellia_128_cbc.
22
24 The Camellia encryption algorithm for EVP.
25
26 EVP_camellia_128_cbc(), EVP_camellia_192_cbc(), EVP_camellia_256_cbc(),
27 EVP_camellia_128_cfb(), EVP_camellia_192_cfb(), EVP_camellia_256_cfb(),
28 EVP_camellia_128_cfb1(), EVP_camellia_192_cfb1(),
29 EVP_camellia_256_cfb1(), EVP_camellia_128_cfb8(),
30 EVP_camellia_192_cfb8(), EVP_camellia_256_cfb8(),
31 EVP_camellia_128_ctr(), EVP_camellia_192_ctr(), EVP_camellia_256_ctr(),
32 EVP_camellia_128_ecb(), EVP_camellia_192_ecb(), EVP_camellia_256_ecb(),
33 EVP_camellia_128_ofb(), EVP_camellia_192_ofb(), EVP_camellia_256_ofb()
34 Camellia for 128, 192 and 256 bit keys in the following modes: CBC,
35 CFB with 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift,
36 CTR, ECB and OFB.
37
39 These functions return an EVP_CIPHER structure that contains the
40 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
41 details of the EVP_CIPHER structure.
42
44 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
45
47 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
48
49 Licensed under the OpenSSL license (the "License"). You may not use
50 this file except in compliance with the License. You can obtain a copy
51 in the file LICENSE in the source distribution or at
52 <https://www.openssl.org/source/license.html>.
53
54
55
561.1.1 2018-09-11 EVP_CAMELLIA(3)