EVP_desx_cbc.pod 971 B

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