EVP_aria_128_gcm.pod 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 RETURN VALUES
  80. These functions return an B<EVP_CIPHER> structure that contains the
  81. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  82. details of the B<EVP_CIPHER> structure.
  83. =head1 SEE ALSO
  84. L<evp(7)>,
  85. L<EVP_EncryptInit(3)>,
  86. L<EVP_CIPHER_meth_new(3)>
  87. =head1 COPYRIGHT
  88. Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.
  89. Licensed under the Apache License 2.0 (the "License"). You may not use
  90. this file except in compliance with the License. You can obtain a copy
  91. in the file LICENSE in the source distribution or at
  92. L<https://www.openssl.org/source/license.html>.
  93. =cut