EVP_idea_cbc.pod 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. =pod
  2. =head1 NAME
  3. EVP_idea_cbc,
  4. EVP_idea_cfb,
  5. EVP_idea_cfb64,
  6. EVP_idea_ecb,
  7. EVP_idea_ofb
  8. - EVP IDEA cipher
  9. =head1 SYNOPSIS
  10. #include <openssl/evp.h>
  11. const EVP_CIPHER *EVP_idea_cbc(void);
  12. const EVP_CIPHER *EVP_idea_cfb(void);
  13. const EVP_CIPHER *EVP_idea_cfb64(void);
  14. const EVP_CIPHER *EVP_idea_ecb(void);
  15. const EVP_CIPHER *EVP_idea_ofb(void);
  16. =head1 DESCRIPTION
  17. The IDEA encryption algorithm for EVP.
  18. =over 4
  19. =item EVP_idea_cbc(),
  20. EVP_idea_cfb(),
  21. EVP_idea_cfb64(),
  22. EVP_idea_ecb(),
  23. EVP_idea_ofb()
  24. The IDEA encryption algorithm in CBC, CFB, ECB and OFB modes respectively.
  25. =back
  26. =head1 NOTES
  27. Developers should be aware of the negative performance implications of
  28. calling these functions multiple times and should consider using
  29. L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-IDEA(7)> instead.
  30. See L<crypto(7)/Performance> for further information.
  31. =head1 RETURN VALUES
  32. These functions return an B<EVP_CIPHER> structure that contains the
  33. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  34. details of the B<EVP_CIPHER> structure.
  35. =head1 SEE ALSO
  36. L<evp(7)>,
  37. L<EVP_EncryptInit(3)>,
  38. L<EVP_CIPHER_meth_new(3)>
  39. =head1 COPYRIGHT
  40. Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
  41. Licensed under the Apache License 2.0 (the "License"). You may not use
  42. this file except in compliance with the License. You can obtain a copy
  43. in the file LICENSE in the source distribution or at
  44. L<https://www.openssl.org/source/license.html>.
  45. =cut