EVP_bf_cbc.pod 1.1 KB

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