EVP_aria.pod 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. =pod
  2. =head1 NAME
  3. EVP_aria_128_cbc,
  4. EVP_aria_192_cbc,
  5. EVP_aria_256_cbc,
  6. EVP_aria_128_cfb,
  7. EVP_aria_192_cfb,
  8. EVP_aria_256_cfb,
  9. EVP_aria_128_cfb1,
  10. EVP_aria_192_cfb1,
  11. EVP_aria_256_cfb1,
  12. EVP_aria_128_cfb8,
  13. EVP_aria_192_cfb8,
  14. EVP_aria_256_cfb8,
  15. EVP_aria_128_ctr,
  16. EVP_aria_192_ctr,
  17. EVP_aria_256_ctr,
  18. EVP_aria_128_ecb,
  19. EVP_aria_192_ecb,
  20. EVP_aria_256_ecb,
  21. EVP_aria_128_ofb,
  22. EVP_aria_192_ofb,
  23. EVP_aria_256_ofb,
  24. EVP_aria_128_ccm,
  25. EVP_aria_192_ccm,
  26. EVP_aria_256_ccm,
  27. EVP_aria_128_gcm,
  28. EVP_aria_192_gcm,
  29. EVP_aria_256_gcm,
  30. - EVP AES cipher
  31. =head1 SYNOPSIS
  32. =for comment generic
  33. #include <openssl/evp.h>
  34. const EVP_CIPHER *EVP_ciphername(void)
  35. I<EVP_ciphername> is used a placeholder for any of the described cipher
  36. functions, such as I<EVP_aria_128_cbc>.
  37. =head1 DESCRIPTION
  38. The ARIA encryption algorithm for EVP.
  39. =over 4
  40. =item EVP_aria_128_cbc(),
  41. EVP_aria_192_cbc(),
  42. EVP_aria_256_cbc(),
  43. EVP_aria_128_cfb(),
  44. EVP_aria_192_cfb(),
  45. EVP_aria_256_cfb(),
  46. EVP_aria_128_cfb1(),
  47. EVP_aria_192_cfb1(),
  48. EVP_aria_256_cfb1(),
  49. EVP_aria_128_cfb8(),
  50. EVP_aria_192_cfb8(),
  51. EVP_aria_256_cfb8(),
  52. EVP_aria_128_ctr(),
  53. EVP_aria_192_ctr(),
  54. EVP_aria_256_ctr(),
  55. EVP_aria_128_ecb(),
  56. EVP_aria_192_ecb(),
  57. EVP_aria_256_ecb(),
  58. EVP_aria_128_ofb(),
  59. EVP_aria_192_ofb(),
  60. EVP_aria_256_ofb()
  61. ARIA for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
  62. 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift, CTR, ECB and OFB.
  63. =item EVP_aria_128_ccm(),
  64. EVP_aria_192_ccm(),
  65. EVP_aria_256_ccm(),
  66. EVP_aria_128_gcm(),
  67. EVP_aria_192_gcm(),
  68. EVP_aria_256_gcm(),
  69. ARIA for 128, 192 and 256 bit keys in CBC-MAC Mode (CCM) and Galois Counter
  70. Mode (GCM). These ciphers require additional control operations to function
  71. correctly, see the L<EVP_EncryptInit(3)/AEAD Interface> section for details.
  72. =back
  73. =head1 RETURN VALUES
  74. These functions return an B<EVP_CIPHER> structure that contains the
  75. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  76. details of the B<EVP_CIPHER> structure.
  77. =head1 SEE ALSO
  78. L<evp(7)>,
  79. L<EVP_EncryptInit(3)>,
  80. L<EVP_CIPHER_meth_new(3)>
  81. =head1 COPYRIGHT
  82. Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  83. Licensed under the OpenSSL license (the "License"). You may not use
  84. this file except in compliance with the License. You can obtain a copy
  85. in the file LICENSE in the source distribution or at
  86. L<https://www.openssl.org/source/license.html>.
  87. =cut