1EVP_ARIA(3) OpenSSL EVP_ARIA(3)
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 These functions return an EVP_CIPHER structure that contains the
48 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
49 details of the EVP_CIPHER structure.
50
52 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
53
55 Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.
56
57 Licensed under the OpenSSL license (the "License"). You may not use
58 this file except in compliance with the License. You can obtain a copy
59 in the file LICENSE in the source distribution or at
60 <https://www.openssl.org/source/license.html>.
61
62
63
641.1.1l 2021-09-15 EVP_ARIA(3)