EVP_bf_cbc.pod 1.2 KB

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