]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/EVP_aria.pod
Various typo
[thirdparty/openssl.git] / doc / man3 / EVP_aria.pod
CommitLineData
8fa4d95e
RT
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_ctr,
18EVP_aria_192_ctr,
19EVP_aria_256_ctr,
20EVP_aria_128_ecb,
21EVP_aria_192_ecb,
22EVP_aria_256_ecb,
23EVP_aria_128_ofb,
24EVP_aria_192_ofb,
25EVP_aria_256_ofb,
26EVP_aria_128_ccm,
27EVP_aria_192_ccm,
28EVP_aria_256_ccm,
29EVP_aria_128_gcm,
30EVP_aria_192_gcm,
31EVP_aria_256_gcm,
32- EVP AES cipher
33
34=head1 SYNOPSIS
35
36=for comment generic
37
38 #include <openssl/evp.h>
39
40 const EVP_CIPHER *EVP_ciphername(void)
41
42I<EVP_ciphername> is used a placeholder for any of the described cipher
43functions, such as I<EVP_aria_128_cbc>.
44
45=head1 DESCRIPTION
46
47The ARIA encryption algorithm for EVP.
48
49=over 4
50
51=item EVP_aria_128_cbc(),
52EVP_aria_192_cbc(),
53EVP_aria_256_cbc(),
54EVP_aria_128_cfb(),
55EVP_aria_192_cfb(),
56EVP_aria_256_cfb(),
57EVP_aria_128_cfb1(),
58EVP_aria_192_cfb1(),
59EVP_aria_256_cfb1(),
60EVP_aria_128_cfb8(),
61EVP_aria_192_cfb8(),
62EVP_aria_256_cfb8(),
63EVP_aria_128_ctr(),
64EVP_aria_192_ctr(),
65EVP_aria_256_ctr(),
66EVP_aria_128_ecb(),
67EVP_aria_192_ecb(),
68EVP_aria_256_ecb(),
69EVP_aria_128_ofb(),
70EVP_aria_192_ofb(),
71EVP_aria_256_ofb()
72
73ARIA for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
74128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift, CTR, ECB and OFB.
75
76=item EVP_aria_128_ccm(),
77EVP_aria_192_ccm(),
78EVP_aria_256_ccm(),
79EVP_aria_128_gcm(),
80EVP_aria_192_gcm(),
81EVP_aria_256_gcm(),
82
83ARIA for 128, 192 and 256 bit keys in CBC-MAC Mode (CCM) and Galois Counter
84Mode (GCM). These ciphers require additional control operations to function
85correctly, see the L<EVP_EncryptInit(3)/AEAD Interface> section for details.
86
87=back
88
89=head1 RETURN VALUES
90
91These functions return an B<EVP_CIPHER> structure that contains the
92implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
93details of the B<EVP_CIPHER> structure.
94
95=head1 SEE ALSO
96
97L<evp(7)>,
98L<EVP_EncryptInit(3)>,
99L<EVP_CIPHER_meth_new(3)>
100
101=head1 COPYRIGHT
102
103Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
104
105Licensed under the OpenSSL license (the "License"). You may not use
106this file except in compliance with the License. You can obtain a copy
107in the file LICENSE in the source distribution or at
108L<https://www.openssl.org/source/license.html>.
109
110=cut
111