EVP_cast5_cbc.pod 1.5 KB

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