EVP_desx_cbc.pod 1.1 KB

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