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