1=pod
2
3=head1 NAME
4
5EVP_desx_cbc
6- EVP DES-X cipher
7
8=head1 SYNOPSIS
9
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_desx_cbc(void)
13
14=head1 DESCRIPTION
15
16The DES-X encryption algorithm for EVP.
17
18All modes below use a key length of 128 bits and acts on blocks of 128-bits.
19
20=over 4
21
22=item EVP_desx_cbc()
23
24The DES-X algorithm in CBC mode.
25
26=back
27
28=head1 RETURN VALUES
29
30These functions return an B<EVP_CIPHER> structure that contains the
31implementation of the symmetric cipher. See L<EVP_CIPHER_meth_new(3)> for
32details of the B<EVP_CIPHER> structure.
33
34=head1 SEE ALSO
35
36L<evp(7)>,
37L<EVP_EncryptInit(3)>,
38L<EVP_CIPHER_meth_new(3)>
39
40=head1 COPYRIGHT
41
42Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
43
44Licensed under the OpenSSL license (the "License").  You may not use
45this file except in compliance with the License.  You can obtain a copy
46in the file LICENSE in the source distribution or at
47L<https://www.openssl.org/source/license.html>.
48
49=cut
50
51