EVP_aria_128_gcm.pod 2.7 KB

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