1OSSL_PROVIDER-LEGACY(7ossl) OpenSSL OSSL_PROVIDER-LEGACY(7ossl)
2
3
4
6 OSSL_PROVIDER-legacy - OpenSSL legacy provider
7
9 The OpenSSL legacy provider supplies OpenSSL implementations of
10 algorithms that have been deemed legacy. Such algorithms have commonly
11 fallen out of use, have been deemed insecure by the cryptography
12 community, or something similar.
13
14 We can consider this the retirement home of cryptographic algorithms.
15
16 Properties
17 The implementations in this provider specifically has this property
18 defined:
19
20 "provider=legacy"
21
22 It may be used in a property query string with fetching functions such
23 as EVP_MD_fetch(3) or EVP_CIPHER_fetch(3), as well as with other
24 functions that take a property query string, such as
25 EVP_PKEY_CTX_new_from_name(3).
26
27 It isn't mandatory to query for any of these properties, except to make
28 sure to get implementations of this provider and none other.
29
31 The OpenSSL legacy provider supports these operations and algorithms:
32
33 Hashing Algorithms / Message Digests
34 MD2, see EVP_MD-MD2(7)
35 MD4, see EVP_MD-MD4(7)
36 MDC2, see EVP_MD-MDC2(7)
37 WHIRLPOOL, see EVP_MD-WHIRLPOOL(7)
38 RIPEMD160, see EVP_MD-RIPEMD160(7)
39
40 Symmetric Ciphers
41 Not all of these symmetric cipher algorithms are enabled by default.
42
43 Blowfish, see EVP_CIPHER-BLOWFISH(7)
44 CAST, see EVP_CIPHER-CAST(7)
45 DES, see EVP_CIPHER-DES(7)
46 The algorithm names are: DES_ECB, DES_CBC, DES_OFB, DES_CFB,
47 DES_CFB1, DES_CFB8 and DESX_CBC.
48
49 IDEA, see EVP_CIPHER-IDEA(7)
50 RC2, see EVP_CIPHER-RC2(7)
51 RC4, see EVP_CIPHER-RC4(7)
52 RC5, see EVP_CIPHER-RC5(7)
53 Disabled by default. Use enable-rc5 config option to enable.
54
55 SEED, see EVP_CIPHER-SEED(7)
56
57 Key Derivation Function (KDF)
58 PBKDF1
59
61 OSSL_PARAM(3), openssl-core.h(7), openssl-core_dispatch.h(7),
62 provider(7)
63
65 This functionality was added in OpenSSL 3.0.
66
68 Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
69
70 Licensed under the Apache License 2.0 (the "License"). You may not use
71 this file except in compliance with the License. You can obtain a copy
72 in the file LICENSE in the source distribution or at
73 <https://www.openssl.org/source/license.html>.
74
75
76
773.0.9 2023-07-27 OSSL_PROVIDER-LEGACY(7ossl)