EVP_idea_cbc.pod 1.1 KB

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