EVP_idea_cbc.pod 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 RETURN VALUES
  27. These functions return an B<EVP_CIPHER> structure that contains the
  28. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  29. details of the B<EVP_CIPHER> structure.
  30. =head1 SEE ALSO
  31. L<evp(7)>,
  32. L<EVP_EncryptInit(3)>,
  33. L<EVP_CIPHER_meth_new(3)>
  34. =head1 COPYRIGHT
  35. Copyright 2017-2020 The OpenSSL Project Authors. All Rights Reserved.
  36. Licensed under the Apache License 2.0 (the "License"). You may not use
  37. this file except in compliance with the License. You can obtain a copy
  38. in the file LICENSE in the source distribution or at
  39. L<https://www.openssl.org/source/license.html>.
  40. =cut