1 =pod 2 3 =head1 NAME 4 5 EVP_CIPHER-ARIA - The ARIA EVP_CIPHER implementations 6 7 =head1 DESCRIPTION 8 9 Support for ARIA symmetric encryption using the B<EVP_CIPHER> API. 10 11 =head2 Algorithm Names 12 13 The following algorithms are available in the default provider: 14 15 =over 4 16 17 =item "ARIA-128-CBC", "ARIA-192-CBC" and "ARIA-256-CBC" 18 19 =item "ARIA-128-CFB", "ARIA-192-CFB", "ARIA-256-CFB", 20 "ARIA-128-CFB1", "ARIA-192-CFB1", "ARIA-256-CFB1", 21 "ARIA-128-CFB8", "ARIA-192-CFB8" and "ARIA-256-CFB8" 22 23 =item "ARIA-128-CTR", "ARIA-192-CTR" and "ARIA-256-CTR" 24 25 =item "ARIA-128-ECB", "ARIA-192-ECB" and "ARIA-256-ECB" 26 27 =item "AES-192-OCB", "AES-128-OCB" and "AES-256-OCB" 28 29 =item "ARIA-128-OFB", "ARIA-192-OFB" and "ARIA-256-OFB" 30 31 =item "ARIA-128-CCM", "ARIA-192-CCM" and "ARIA-256-CCM" 32 33 =item "ARIA-128-GCM", "ARIA-192-GCM" and "ARIA-256-GCM" 34 35 =back 36 37 =head2 Parameters 38 39 This implementation supports the parameters described in 40 L<EVP_EncryptInit(3)/PARAMETERS>. 41 42 =head1 SEE ALSO 43 44 L<provider-cipher(7)>, L<OSSL_PROVIDER-default(7)> 45 46 =head1 COPYRIGHT 47 48 Copyright 2021 The OpenSSL Project Authors. All Rights Reserved. 49 50 Licensed under the Apache License 2.0 (the "License"). You may not use 51 this file except in compliance with the License. You can obtain a copy 52 in the file LICENSE in the source distribution or at 53 L<https://www.openssl.org/source/license.html>. 54 55 =cut 56