1=pod
2
3=head1 NAME
4
5EVP_aria_128_cbc,
6EVP_aria_192_cbc,
7EVP_aria_256_cbc,
8EVP_aria_128_cfb,
9EVP_aria_192_cfb,
10EVP_aria_256_cfb,
11EVP_aria_128_cfb1,
12EVP_aria_192_cfb1,
13EVP_aria_256_cfb1,
14EVP_aria_128_cfb8,
15EVP_aria_192_cfb8,
16EVP_aria_256_cfb8,
17EVP_aria_128_cfb128,
18EVP_aria_192_cfb128,
19EVP_aria_256_cfb128,
20EVP_aria_128_ctr,
21EVP_aria_192_ctr,
22EVP_aria_256_ctr,
23EVP_aria_128_ecb,
24EVP_aria_192_ecb,
25EVP_aria_256_ecb,
26EVP_aria_128_ofb,
27EVP_aria_192_ofb,
28EVP_aria_256_ofb,
29EVP_aria_128_ccm,
30EVP_aria_192_ccm,
31EVP_aria_256_ccm,
32EVP_aria_128_gcm,
33EVP_aria_192_gcm,
34EVP_aria_256_gcm,
35- EVP ARIA cipher
36
37=head1 SYNOPSIS
38
39=for openssl generic
40
41 #include <openssl/evp.h>
42
43 const EVP_CIPHER *EVP_ciphername(void)
44
45I<EVP_ciphername> is used a placeholder for any of the described cipher
46functions, such as I<EVP_aria_128_cbc>.
47
48=head1 DESCRIPTION
49
50The ARIA encryption algorithm for EVP.
51
52=over 4
53
54=item EVP_aria_128_cbc(),
55EVP_aria_192_cbc(),
56EVP_aria_256_cbc(),
57EVP_aria_128_cfb(),
58EVP_aria_192_cfb(),
59EVP_aria_256_cfb(),
60EVP_aria_128_cfb1(),
61EVP_aria_192_cfb1(),
62EVP_aria_256_cfb1(),
63EVP_aria_128_cfb8(),
64EVP_aria_192_cfb8(),
65EVP_aria_256_cfb8(),
66EVP_aria_128_cfb128(),
67EVP_aria_192_cfb128(),
68EVP_aria_256_cfb128(),
69EVP_aria_128_ctr(),
70EVP_aria_192_ctr(),
71EVP_aria_256_ctr(),
72EVP_aria_128_ecb(),
73EVP_aria_192_ecb(),
74EVP_aria_256_ecb(),
75EVP_aria_128_ofb(),
76EVP_aria_192_ofb(),
77EVP_aria_256_ofb()
78
79ARIA for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
80128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift, CTR, ECB and OFB.
81
82=item EVP_aria_128_ccm(),
83EVP_aria_192_ccm(),
84EVP_aria_256_ccm(),
85EVP_aria_128_gcm(),
86EVP_aria_192_gcm(),
87EVP_aria_256_gcm(),
88
89ARIA for 128, 192 and 256 bit keys in CBC-MAC Mode (CCM) and Galois Counter
90Mode (GCM). These ciphers require additional control operations to function
91correctly, see the L<EVP_EncryptInit(3)/AEAD Interface> section for details.
92
93=back
94
95=head1 NOTES
96
97Developers should be aware of the negative performance implications of
98calling these functions multiple times and should consider using
99L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-ARIA(7)> instead.
100See L<crypto(7)/Performance> for further information.
101
102=head1 RETURN VALUES
103
104These functions return an B<EVP_CIPHER> structure that contains the
105implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
106details of the B<EVP_CIPHER> structure.
107
108=head1 SEE ALSO
109
110L<evp(7)>,
111L<EVP_EncryptInit(3)>,
112L<EVP_CIPHER_meth_new(3)>
113
114=head1 COPYRIGHT
115
116Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
117
118Licensed under the Apache License 2.0 (the "License").  You may not use
119this file except in compliance with the License.  You can obtain a copy
120in the file LICENSE in the source distribution or at
121L<https://www.openssl.org/source/license.html>.
122
123=cut
124
125