EVP_camellia.pod 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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_ctr,
  16. EVP_camellia_192_ctr,
  17. EVP_camellia_256_ctr,
  18. EVP_camellia_128_ecb,
  19. EVP_camellia_192_ecb,
  20. EVP_camellia_256_ecb,
  21. EVP_camellia_128_ofb,
  22. EVP_camellia_192_ofb,
  23. EVP_camellia_256_ofb
  24. - EVP Camellia cipher
  25. =head1 SYNOPSIS
  26. =for comment generic
  27. #include <openssl/evp.h>
  28. const EVP_CIPHER *EVP_ciphername(void)
  29. I<EVP_ciphername> is used a placeholder for any of the described cipher
  30. functions, such as I<EVP_camellia_128_cbc>.
  31. =head1 DESCRIPTION
  32. The Camellia encryption algorithm for EVP.
  33. =over 4
  34. =item EVP_camellia_128_cbc(),
  35. EVP_camellia_192_cbc(),
  36. EVP_camellia_256_cbc(),
  37. EVP_camellia_128_cfb(),
  38. EVP_camellia_192_cfb(),
  39. EVP_camellia_256_cfb(),
  40. EVP_camellia_128_cfb1(),
  41. EVP_camellia_192_cfb1(),
  42. EVP_camellia_256_cfb1(),
  43. EVP_camellia_128_cfb8(),
  44. EVP_camellia_192_cfb8(),
  45. EVP_camellia_256_cfb8(),
  46. EVP_camellia_128_ctr(),
  47. EVP_camellia_192_ctr(),
  48. EVP_camellia_256_ctr(),
  49. EVP_camellia_128_ecb(),
  50. EVP_camellia_192_ecb(),
  51. EVP_camellia_256_ecb(),
  52. EVP_camellia_128_ofb(),
  53. EVP_camellia_192_ofb(),
  54. EVP_camellia_256_ofb()
  55. Camellia for 128, 192 and 256 bit keys in the following modes: CBC, CFB with
  56. 128-bit shift, CFB with 1-bit shift, CFB with 8-bit shift, CTR, ECB and OFB.
  57. =back
  58. =head1 RETURN VALUES
  59. These functions return an B<EVP_CIPHER> structure that contains the
  60. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  61. details of the B<EVP_CIPHER> structure.
  62. =head1 SEE ALSO
  63. L<evp(7)>,
  64. L<EVP_EncryptInit(3)>,
  65. L<EVP_CIPHER_meth_new(3)>
  66. =head1 COPYRIGHT
  67. Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  68. Licensed under the OpenSSL license (the "License"). You may not use
  69. this file except in compliance with the License. You can obtain a copy
  70. in the file LICENSE in the source distribution or at
  71. L<https://www.openssl.org/source/license.html>.
  72. =cut