SHA512/224 and SHA512/256
[openssl.git] / doc / man3 / EVP_camellia.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_camellia_128_cbc,
6 EVP_camellia_192_cbc,
7 EVP_camellia_256_cbc,
8 EVP_camellia_128_cfb,
9 EVP_camellia_192_cfb,
10 EVP_camellia_256_cfb,
11 EVP_camellia_128_cfb1,
12 EVP_camellia_192_cfb1,
13 EVP_camellia_256_cfb1,
14 EVP_camellia_128_cfb8,
15 EVP_camellia_192_cfb8,
16 EVP_camellia_256_cfb8,
17 EVP_camellia_128_ctr,
18 EVP_camellia_192_ctr,
19 EVP_camellia_256_ctr,
20 EVP_camellia_128_ecb,
21 EVP_camellia_192_ecb,
22 EVP_camellia_256_ecb,
23 EVP_camellia_128_ofb,
24 EVP_camellia_192_ofb,
25 EVP_camellia_256_ofb
26 - EVP Camellia cipher
27
28 =head1 SYNOPSIS
29
30 =for comment generic
31
32  #include <openssl/evp.h>
33
34  const EVP_CIPHER *EVP_ciphername(void)
35
36 I<EVP_ciphername> is used a placeholder for any of the described cipher
37 functions, such as I<EVP_camellia_128_cbc>.
38
39 =head1 DESCRIPTION
40
41 The Camellia encryption algorithm for EVP.
42
43 =over 4
44
45 =item EVP_camellia_128_cbc(),
46 EVP_camellia_192_cbc(),
47 EVP_camellia_256_cbc(),
48 EVP_camellia_128_cfb(),
49 EVP_camellia_192_cfb(),
50 EVP_camellia_256_cfb(),
51 EVP_camellia_128_cfb1(),
52 EVP_camellia_192_cfb1(),
53 EVP_camellia_256_cfb1(),
54 EVP_camellia_128_cfb8(),
55 EVP_camellia_192_cfb8(),
56 EVP_camellia_256_cfb8(),
57 EVP_camellia_128_ctr(),
58 EVP_camellia_192_ctr(),
59 EVP_camellia_256_ctr(),
60 EVP_camellia_128_ecb(),
61 EVP_camellia_192_ecb(),
62 EVP_camellia_256_ecb(),
63 EVP_camellia_128_ofb(),
64 EVP_camellia_192_ofb(),
65 EVP_camellia_256_ofb()
66
67 Camellia for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
68 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift, CTR, ECB and OFB.
69
70 =back
71
72 =head1 RETURN VALUES
73
74 These functions return an B<EVP_CIPHER> structure that contains the
75 implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
76 details of the B<EVP_CIPHER> structure.
77
78 =head1 SEE ALSO
79
80 L<evp(7)>,
81 L<EVP_EncryptInit(3)>,
82 L<EVP_CIPHER_meth_new(3)>
83
84 =head1 COPYRIGHT
85
86 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
87
88 Licensed under the OpenSSL license (the "License").  You may not use
89 this file except in compliance with the License.  You can obtain a copy
90 in the file LICENSE in the source distribution or at
91 L<https://www.openssl.org/source/license.html>.
92
93 =cut
94