EVP_camellia_128_ecb.pod 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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 RETURN VALUES
  65. These functions return an B<EVP_CIPHER> structure that contains the
  66. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  67. details of the B<EVP_CIPHER> structure.
  68. =head1 SEE ALSO
  69. L<evp(7)>,
  70. L<EVP_EncryptInit(3)>,
  71. L<EVP_CIPHER_meth_new(3)>
  72. =head1 COPYRIGHT
  73. Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
  74. Licensed under the Apache License 2.0 (the "License"). You may not use
  75. this file except in compliance with the License. You can obtain a copy
  76. in the file LICENSE in the source distribution or at
  77. L<https://www.openssl.org/source/license.html>.
  78. =cut