1EVP_ARIA_128_GCM(3ossl) OpenSSL EVP_ARIA_128_GCM(3ossl)
2
3
4
6 EVP_aria_128_cbc, EVP_aria_192_cbc, EVP_aria_256_cbc, EVP_aria_128_cfb,
7 EVP_aria_192_cfb, EVP_aria_256_cfb, EVP_aria_128_cfb1,
8 EVP_aria_192_cfb1, EVP_aria_256_cfb1, EVP_aria_128_cfb8,
9 EVP_aria_192_cfb8, EVP_aria_256_cfb8, EVP_aria_128_cfb128,
10 EVP_aria_192_cfb128, EVP_aria_256_cfb128, EVP_aria_128_ctr,
11 EVP_aria_192_ctr, EVP_aria_256_ctr, EVP_aria_128_ecb, EVP_aria_192_ecb,
12 EVP_aria_256_ecb, EVP_aria_128_ofb, EVP_aria_192_ofb, EVP_aria_256_ofb,
13 EVP_aria_128_ccm, EVP_aria_192_ccm, EVP_aria_256_ccm, EVP_aria_128_gcm,
14 EVP_aria_192_gcm, EVP_aria_256_gcm, - EVP ARIA cipher
15
17 #include <openssl/evp.h>
18
19 const EVP_CIPHER *EVP_ciphername(void)
20
21 EVP_ciphername is used a placeholder for any of the described cipher
22 functions, such as EVP_aria_128_cbc.
23
25 The ARIA encryption algorithm for EVP.
26
27 EVP_aria_128_cbc(), EVP_aria_192_cbc(), EVP_aria_256_cbc(),
28 EVP_aria_128_cfb(), EVP_aria_192_cfb(), EVP_aria_256_cfb(),
29 EVP_aria_128_cfb1(), EVP_aria_192_cfb1(), EVP_aria_256_cfb1(),
30 EVP_aria_128_cfb8(), EVP_aria_192_cfb8(), EVP_aria_256_cfb8(),
31 EVP_aria_128_cfb128(), EVP_aria_192_cfb128(), EVP_aria_256_cfb128(),
32 EVP_aria_128_ctr(), EVP_aria_192_ctr(), EVP_aria_256_ctr(),
33 EVP_aria_128_ecb(), EVP_aria_192_ecb(), EVP_aria_256_ecb(),
34 EVP_aria_128_ofb(), EVP_aria_192_ofb(), EVP_aria_256_ofb()
35 ARIA for 128, 192 and 256 bit keys in the following modes: CBC, CFB
36 with 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift,
37 CTR, ECB and OFB.
38
39 EVP_aria_128_ccm(), EVP_aria_192_ccm(), EVP_aria_256_ccm(),
40 EVP_aria_128_gcm(), EVP_aria_192_gcm(), EVP_aria_256_gcm(),
41 ARIA for 128, 192 and 256 bit keys in CBC-MAC Mode (CCM) and Galois
42 Counter Mode (GCM). These ciphers require additional control
43 operations to function correctly, see the "AEAD Interface" in
44 EVP_EncryptInit(3) section for details.
45
47 Developers should be aware of the negative performance implications of
48 calling these functions multiple times and should consider using
49 EVP_CIPHER_fetch(3) instead. See "Performance" in crypto(7) for
50 further information.
51
53 These functions return an EVP_CIPHER structure that contains the
54 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
55 details of the EVP_CIPHER structure.
56
58 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
59
61 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
62
63 Licensed under the Apache License 2.0 (the "License"). You may not use
64 this file except in compliance with the License. You can obtain a copy
65 in the file LICENSE in the source distribution or at
66 <https://www.openssl.org/source/license.html>.
67
68
69
703.0.9 2023-07-27 EVP_ARIA_128_GCM(3ossl)