EVP_desx_cbc.pod 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. =pod
  2. =head1 NAME
  3. EVP_desx_cbc
  4. - EVP DES-X cipher
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. const EVP_CIPHER *EVP_desx_cbc(void);
  8. =head1 DESCRIPTION
  9. The DES-X encryption algorithm for EVP.
  10. All modes below use a key length of 128 bits and acts on blocks of 128-bits.
  11. =over 4
  12. =item EVP_desx_cbc()
  13. The DES-X algorithm in CBC mode.
  14. This algorithm is not provided by the OpenSSL default provider.
  15. To use it is necessary to load either the OpenSSL legacy provider or another
  16. implementation.
  17. =back
  18. Developers should be aware of the negative performance implications of
  19. calling this function multiple times and should consider using
  20. L<EVP_CIPHER_fetch(3)> with L<EVP_CIPHER-DES(7)> instead.
  21. See L<crypto(7)/Performance> for further information.
  22. =head1 RETURN VALUES
  23. These functions return an B<EVP_CIPHER> structure that contains the
  24. implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
  25. details of the B<EVP_CIPHER> structure.
  26. =head1 SEE ALSO
  27. L<evp(7)>,
  28. L<EVP_EncryptInit(3)>,
  29. L<EVP_CIPHER_meth_new(3)>
  30. =head1 COPYRIGHT
  31. Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
  32. Licensed under the Apache License 2.0 (the "License"). You may not use
  33. this file except in compliance with the License. You can obtain a copy
  34. in the file LICENSE in the source distribution or at
  35. L<https://www.openssl.org/source/license.html>.
  36. =cut