1EVP_DESX_CBC(3ossl) OpenSSL EVP_DESX_CBC(3ossl)
2
3
4
6 EVP_desx_cbc - EVP DES-X cipher
7
9 #include <openssl/evp.h>
10
11 const EVP_CIPHER *EVP_desx_cbc(void);
12
14 The DES-X encryption algorithm for EVP.
15
16 All modes below use a key length of 128 bits and acts on blocks of
17 128-bits.
18
19 EVP_desx_cbc()
20 The DES-X algorithm in CBC mode.
21
22 This algorithm is not provided by the OpenSSL default provider. To
23 use it is necessary to load either the OpenSSL legacy provider or
24 another implementation.
25
27 These functions return an EVP_CIPHER structure that contains the
28 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
29 details of the EVP_CIPHER structure.
30
32 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
33
35 Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
36
37 Licensed under the Apache License 2.0 (the "License"). You may not use
38 this file except in compliance with the License. You can obtain a copy
39 in the file LICENSE in the source distribution or at
40 <https://www.openssl.org/source/license.html>.
41
42
43
443.0.5 2022-07-05 EVP_DESX_CBC(3ossl)