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