1EVP_DES_CBC(3ossl) OpenSSL EVP_DES_CBC(3ossl)
2
3
4
6 EVP_des_cbc, EVP_des_cfb, EVP_des_cfb1, EVP_des_cfb8, EVP_des_cfb64,
7 EVP_des_ecb, EVP_des_ofb, EVP_des_ede, EVP_des_ede_cbc,
8 EVP_des_ede_cfb, EVP_des_ede_cfb64, EVP_des_ede_ecb, EVP_des_ede_ofb,
9 EVP_des_ede3, EVP_des_ede3_cbc, EVP_des_ede3_cfb, EVP_des_ede3_cfb1,
10 EVP_des_ede3_cfb8, EVP_des_ede3_cfb64, EVP_des_ede3_ecb,
11 EVP_des_ede3_ofb, EVP_des_ede3_wrap - EVP DES cipher
12
14 #include <openssl/evp.h>
15
16 const EVP_CIPHER *EVP_ciphername(void)
17
18 EVP_ciphername is used a placeholder for any of the described cipher
19 functions, such as EVP_des_cbc.
20
22 The DES encryption algorithm for EVP.
23
24 EVP_des_cbc(), EVP_des_ecb(), EVP_des_cfb(), EVP_des_cfb1(),
25 EVP_des_cfb8(), EVP_des_cfb64(), EVP_des_ofb()
26 DES in CBC, ECB, CFB with 64-bit shift, CFB with 1-bit shift, CFB
27 with 8-bit shift and OFB modes.
28
29 None of these algorithms are provided by the OpenSSL default
30 provider. To use them it is necessary to load either the OpenSSL
31 legacy provider or another implementation.
32
33 EVP_des_ede(), EVP_des_ede_cbc(), EVP_des_ede_cfb(),
34 EVP_des_ede_cfb64(), EVP_des_ede_ecb(), EVP_des_ede_ofb()
35 Two key triple DES in ECB, CBC, CFB with 64-bit shift and OFB
36 modes.
37
38 EVP_des_ede3(), EVP_des_ede3_cbc(), EVP_des_ede3_cfb(),
39 EVP_des_ede3_cfb1(), EVP_des_ede3_cfb8(), EVP_des_ede3_cfb64(),
40 EVP_des_ede3_ecb(), EVP_des_ede3_ofb()
41 Three-key triple DES in ECB, CBC, CFB with 64-bit shift, CFB with
42 1-bit shift, CFB with 8-bit shift and OFB modes.
43
44 EVP_des_ede3_wrap()
45 Triple-DES key wrap according to RFC 3217 Section 3.
46
48 Developers should be aware of the negative performance implications of
49 calling these functions multiple times and should consider using
50 EVP_CIPHER_fetch(3) instead. See "Performance" in crypto(7) for
51 further information.
52
54 These functions return an EVP_CIPHER structure that contains the
55 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
56 details of the EVP_CIPHER structure.
57
59 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
60
62 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
63
64 Licensed under the Apache License 2.0 (the "License"). You may not use
65 this file except in compliance with the License. You can obtain a copy
66 in the file LICENSE in the source distribution or at
67 <https://www.openssl.org/source/license.html>.
68
69
70
713.1.1 2023-08-31 EVP_DES_CBC(3ossl)