2
0

EVP_camellia_128_ecb.pod 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. =pod
  2. =head1 NAME
  3. EVP_camellia_128_cbc,
  4. EVP_camellia_192_cbc,
  5. EVP_camellia_256_cbc,
  6. EVP_camellia_128_cfb,
  7. EVP_camellia_192_cfb,
  8. EVP_camellia_256_cfb,
  9. EVP_camellia_128_cfb1,
  10. EVP_camellia_192_cfb1,
  11. EVP_camellia_256_cfb1,
  12. EVP_camellia_128_cfb8,
  13. EVP_camellia_192_cfb8,
  14. EVP_camellia_256_cfb8,
  15. EVP_camellia_128_cfb128,
  16. EVP_camellia_192_cfb128,
  17. EVP_camellia_256_cfb128,
  18. EVP_camellia_128_ctr,
  19. EVP_camellia_192_ctr,
  20. EVP_camellia_256_ctr,
  21. EVP_camellia_128_ecb,
  22. EVP_camellia_192_ecb,
  23. EVP_camellia_256_ecb,
  24. EVP_camellia_128_ofb,
  25. EVP_camellia_192_ofb,
  26. EVP_camellia_256_ofb
  27. - EVP Camellia cipher
  28. =head1 SYNOPSIS
  29. =for openssl generic
  30. #include <openssl/evp.h>
  31. const EVP_CIPHER *EVP_ciphername(void)
  32. I<EVP_ciphername> is used a placeholder for any of the described cipher
  33. functions, such as I<EVP_camellia_128_cbc>.
  34. =head1 DESCRIPTION
  35. The Camellia encryption algorithm for EVP.
  36. =over 4
  37. =item EVP_camellia_128_cbc(),
  38. EVP_camellia_192_cbc(),
  39. EVP_camellia_256_cbc(),
  40. EVP_camellia_128_cfb(),
  41. EVP_camellia_192_cfb(),
  42. EVP_camellia_256_cfb(),
  43. EVP_camellia_128_cfb1(),
  44. EVP_camellia_192_cfb1(),
  45. EVP_camellia_256_cfb1(),
  46. EVP_camellia_128_cfb8(),
  47. EVP_camellia_192_cfb8(),
  48. EVP_camellia_256_cfb8(),
  49. EVP_camellia_128_cfb128(),
  50. EVP_camellia_192_cfb128(),
  51. EVP_camellia_256_cfb128(),
  52. EVP_camellia_128_ctr(),
  53. EVP_camellia_192_ctr(),
  54. EVP_camellia_256_ctr(),
  55. EVP_camellia_128_ecb(),
  56. EVP_camellia_192_ecb(),
  57. EVP_camellia_256_ecb(),
  58. EVP_camellia_128_ofb(),
  59. EVP_camellia_192_ofb(),
  60. EVP_camellia_256_ofb()
  61. Camellia 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. =back
  64. =head1 NOTES
  65. Developers should be aware of the negative performance implications of
  66. calling these functions multiple times and should consider using
  67. L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-CAMELLIA(7)> instead.
  68. See L<crypto(7)/Performance> for further information.
  69. =head1 RETURN VALUES
  70. These functions return an B<EVP_CIPHER> structure that contains the
  71. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  72. details of the B<EVP_CIPHER> structure.
  73. =head1 SEE ALSO
  74. L<evp(7)>,
  75. L<EVP_EncryptInit(3)>,
  76. L<EVP_CIPHER_meth_new(3)>
  77. =head1 COPYRIGHT
  78. Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
  79. Licensed under the Apache License 2.0 (the "License"). You may not use
  80. this file except in compliance with the License. You can obtain a copy
  81. in the file LICENSE in the source distribution or at
  82. L<https://www.openssl.org/source/license.html>.
  83. =cut