Merge remote-tracking branch 'origin/vendor/BINUTILS234'
[dragonfly.git] / crypto / libressl / crypto / evp / c_all.c
1 /* $OpenBSD: c_all.c,v 1.26 2019/03/17 18:07:41 tb Exp $ */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #include <stdio.h>
60 #include <pthread.h>
61
62 #include <openssl/opensslconf.h>
63
64 #include <openssl/conf.h>
65 #include <openssl/evp.h>
66 #include <openssl/objects.h>
67
68 #include "cryptlib.h"
69
70 static void
71 OpenSSL_add_all_ciphers_internal(void)
72 {
73 #ifndef OPENSSL_NO_DES
74         EVP_add_cipher(EVP_des_cfb());
75         EVP_add_cipher(EVP_des_cfb1());
76         EVP_add_cipher(EVP_des_cfb8());
77         EVP_add_cipher(EVP_des_ede_cfb());
78         EVP_add_cipher(EVP_des_ede3_cfb());
79         EVP_add_cipher(EVP_des_ede3_cfb1());
80         EVP_add_cipher(EVP_des_ede3_cfb8());
81
82         EVP_add_cipher(EVP_des_ofb());
83         EVP_add_cipher(EVP_des_ede_ofb());
84         EVP_add_cipher(EVP_des_ede3_ofb());
85
86         EVP_add_cipher(EVP_desx_cbc());
87         EVP_add_cipher_alias(SN_desx_cbc, "DESX");
88         EVP_add_cipher_alias(SN_desx_cbc, "desx");
89
90         EVP_add_cipher(EVP_des_cbc());
91         EVP_add_cipher_alias(SN_des_cbc, "DES");
92         EVP_add_cipher_alias(SN_des_cbc, "des");
93         EVP_add_cipher(EVP_des_ede_cbc());
94         EVP_add_cipher(EVP_des_ede3_cbc());
95         EVP_add_cipher_alias(SN_des_ede3_cbc, "DES3");
96         EVP_add_cipher_alias(SN_des_ede3_cbc, "des3");
97
98         EVP_add_cipher(EVP_des_ecb());
99         EVP_add_cipher(EVP_des_ede());
100         EVP_add_cipher(EVP_des_ede3());
101 #endif
102
103 #ifndef OPENSSL_NO_RC4
104         EVP_add_cipher(EVP_rc4());
105         EVP_add_cipher(EVP_rc4_40());
106 #ifndef OPENSSL_NO_MD5
107         EVP_add_cipher(EVP_rc4_hmac_md5());
108 #endif
109 #endif
110
111 #ifndef OPENSSL_NO_IDEA
112         EVP_add_cipher(EVP_idea_ecb());
113         EVP_add_cipher(EVP_idea_cfb());
114         EVP_add_cipher(EVP_idea_ofb());
115         EVP_add_cipher(EVP_idea_cbc());
116         EVP_add_cipher_alias(SN_idea_cbc, "IDEA");
117         EVP_add_cipher_alias(SN_idea_cbc, "idea");
118 #endif
119
120 #ifndef OPENSSL_NO_RC2
121         EVP_add_cipher(EVP_rc2_ecb());
122         EVP_add_cipher(EVP_rc2_cfb());
123         EVP_add_cipher(EVP_rc2_ofb());
124         EVP_add_cipher(EVP_rc2_cbc());
125         EVP_add_cipher(EVP_rc2_40_cbc());
126         EVP_add_cipher(EVP_rc2_64_cbc());
127         EVP_add_cipher_alias(SN_rc2_cbc, "RC2");
128         EVP_add_cipher_alias(SN_rc2_cbc, "rc2");
129 #endif
130
131 #ifndef OPENSSL_NO_BF
132         EVP_add_cipher(EVP_bf_ecb());
133         EVP_add_cipher(EVP_bf_cfb());
134         EVP_add_cipher(EVP_bf_ofb());
135         EVP_add_cipher(EVP_bf_cbc());
136         EVP_add_cipher_alias(SN_bf_cbc, "BF");
137         EVP_add_cipher_alias(SN_bf_cbc, "bf");
138         EVP_add_cipher_alias(SN_bf_cbc, "blowfish");
139 #endif
140
141 #ifndef OPENSSL_NO_CAST
142         EVP_add_cipher(EVP_cast5_ecb());
143         EVP_add_cipher(EVP_cast5_cfb());
144         EVP_add_cipher(EVP_cast5_ofb());
145         EVP_add_cipher(EVP_cast5_cbc());
146         EVP_add_cipher_alias(SN_cast5_cbc, "CAST");
147         EVP_add_cipher_alias(SN_cast5_cbc, "cast");
148         EVP_add_cipher_alias(SN_cast5_cbc, "CAST-cbc");
149         EVP_add_cipher_alias(SN_cast5_cbc, "cast-cbc");
150 #endif
151
152 #ifndef OPENSSL_NO_AES
153         EVP_add_cipher(EVP_aes_128_ecb());
154         EVP_add_cipher(EVP_aes_128_cbc());
155         EVP_add_cipher(EVP_aes_128_ccm());
156         EVP_add_cipher(EVP_aes_128_cfb());
157         EVP_add_cipher(EVP_aes_128_cfb1());
158         EVP_add_cipher(EVP_aes_128_cfb8());
159         EVP_add_cipher(EVP_aes_128_ofb());
160         EVP_add_cipher(EVP_aes_128_ctr());
161         EVP_add_cipher(EVP_aes_128_gcm());
162         EVP_add_cipher(EVP_aes_128_wrap());
163         EVP_add_cipher(EVP_aes_128_xts());
164         EVP_add_cipher_alias(SN_aes_128_cbc, "AES128");
165         EVP_add_cipher_alias(SN_aes_128_cbc, "aes128");
166         EVP_add_cipher(EVP_aes_192_ecb());
167         EVP_add_cipher(EVP_aes_192_cbc());
168         EVP_add_cipher(EVP_aes_192_ccm());
169         EVP_add_cipher(EVP_aes_192_cfb());
170         EVP_add_cipher(EVP_aes_192_cfb1());
171         EVP_add_cipher(EVP_aes_192_cfb8());
172         EVP_add_cipher(EVP_aes_192_ofb());
173         EVP_add_cipher(EVP_aes_192_ctr());
174         EVP_add_cipher(EVP_aes_192_gcm());
175         EVP_add_cipher(EVP_aes_192_wrap());
176         EVP_add_cipher_alias(SN_aes_192_cbc, "AES192");
177         EVP_add_cipher_alias(SN_aes_192_cbc, "aes192");
178         EVP_add_cipher(EVP_aes_256_ecb());
179         EVP_add_cipher(EVP_aes_256_cbc());
180         EVP_add_cipher(EVP_aes_256_ccm());
181         EVP_add_cipher(EVP_aes_256_cfb());
182         EVP_add_cipher(EVP_aes_256_cfb1());
183         EVP_add_cipher(EVP_aes_256_cfb8());
184         EVP_add_cipher(EVP_aes_256_ofb());
185         EVP_add_cipher(EVP_aes_256_ctr());
186         EVP_add_cipher(EVP_aes_256_gcm());
187         EVP_add_cipher(EVP_aes_256_wrap());
188         EVP_add_cipher(EVP_aes_256_xts());
189         EVP_add_cipher_alias(SN_aes_256_cbc, "AES256");
190         EVP_add_cipher_alias(SN_aes_256_cbc, "aes256");
191 #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
192         EVP_add_cipher(EVP_aes_128_cbc_hmac_sha1());
193         EVP_add_cipher(EVP_aes_256_cbc_hmac_sha1());
194 #endif
195 #endif
196
197 #ifndef OPENSSL_NO_CAMELLIA
198         EVP_add_cipher(EVP_camellia_128_ecb());
199         EVP_add_cipher(EVP_camellia_128_cbc());
200         EVP_add_cipher(EVP_camellia_128_cfb());
201         EVP_add_cipher(EVP_camellia_128_cfb1());
202         EVP_add_cipher(EVP_camellia_128_cfb8());
203         EVP_add_cipher(EVP_camellia_128_ofb());
204         EVP_add_cipher_alias(SN_camellia_128_cbc, "CAMELLIA128");
205         EVP_add_cipher_alias(SN_camellia_128_cbc, "camellia128");
206         EVP_add_cipher(EVP_camellia_192_ecb());
207         EVP_add_cipher(EVP_camellia_192_cbc());
208         EVP_add_cipher(EVP_camellia_192_cfb());
209         EVP_add_cipher(EVP_camellia_192_cfb1());
210         EVP_add_cipher(EVP_camellia_192_cfb8());
211         EVP_add_cipher(EVP_camellia_192_ofb());
212         EVP_add_cipher_alias(SN_camellia_192_cbc, "CAMELLIA192");
213         EVP_add_cipher_alias(SN_camellia_192_cbc, "camellia192");
214         EVP_add_cipher(EVP_camellia_256_ecb());
215         EVP_add_cipher(EVP_camellia_256_cbc());
216         EVP_add_cipher(EVP_camellia_256_cfb());
217         EVP_add_cipher(EVP_camellia_256_cfb1());
218         EVP_add_cipher(EVP_camellia_256_cfb8());
219         EVP_add_cipher(EVP_camellia_256_ofb());
220         EVP_add_cipher_alias(SN_camellia_256_cbc, "CAMELLIA256");
221         EVP_add_cipher_alias(SN_camellia_256_cbc, "camellia256");
222 #endif
223
224 #ifndef OPENSSL_NO_CHACHA
225         EVP_add_cipher(EVP_chacha20());
226 #endif
227
228 #ifndef OPENSSL_NO_GOST
229         EVP_add_cipher(EVP_gost2814789_ecb());
230         EVP_add_cipher(EVP_gost2814789_cfb64());
231         EVP_add_cipher(EVP_gost2814789_cnt());
232 #endif
233
234 #ifndef OPENSSL_NO_SM4
235         EVP_add_cipher(EVP_sm4_ecb());
236         EVP_add_cipher(EVP_sm4_cbc());
237         EVP_add_cipher(EVP_sm4_cfb());
238         EVP_add_cipher(EVP_sm4_ofb());
239         EVP_add_cipher(EVP_sm4_ctr());
240         EVP_add_cipher_alias(SN_sm4_cbc, "SM4");
241         EVP_add_cipher_alias(SN_sm4_cbc, "sm4");
242 #endif
243 }
244
245 void
246 OpenSSL_add_all_ciphers(void)
247 {
248         static pthread_once_t add_all_ciphers_once = PTHREAD_ONCE_INIT;
249         (void) pthread_once(&add_all_ciphers_once, OpenSSL_add_all_ciphers_internal);
250 }
251
252 static void
253 OpenSSL_add_all_digests_internal(void)
254 {
255 #ifndef OPENSSL_NO_MD4
256         EVP_add_digest(EVP_md4());
257 #endif
258
259 #ifndef OPENSSL_NO_MD5
260         EVP_add_digest(EVP_md5());
261         EVP_add_digest(EVP_md5_sha1());
262         EVP_add_digest_alias(SN_md5, "ssl2-md5");
263         EVP_add_digest_alias(SN_md5, "ssl3-md5");
264 #endif
265
266 #if !defined(OPENSSL_NO_SHA)
267 #ifndef OPENSSL_NO_DSA
268         EVP_add_digest(EVP_dss());
269 #endif
270 #endif
271 #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
272         EVP_add_digest(EVP_sha1());
273         EVP_add_digest_alias(SN_sha1, "ssl3-sha1");
274         EVP_add_digest_alias(SN_sha1WithRSAEncryption, SN_sha1WithRSA);
275 #ifndef OPENSSL_NO_DSA
276         EVP_add_digest(EVP_dss1());
277         EVP_add_digest_alias(SN_dsaWithSHA1, SN_dsaWithSHA1_2);
278         EVP_add_digest_alias(SN_dsaWithSHA1, "DSS1");
279         EVP_add_digest_alias(SN_dsaWithSHA1, "dss1");
280 #endif
281 #ifndef OPENSSL_NO_ECDSA
282         EVP_add_digest(EVP_ecdsa());
283 #endif
284 #endif
285
286 #ifndef OPENSSL_NO_GOST
287         EVP_add_digest(EVP_gostr341194());
288         EVP_add_digest(EVP_gost2814789imit());
289         EVP_add_digest(EVP_streebog256());
290         EVP_add_digest(EVP_streebog512());
291 #endif
292 #ifndef OPENSSL_NO_RIPEMD
293         EVP_add_digest(EVP_ripemd160());
294         EVP_add_digest_alias(SN_ripemd160, "ripemd");
295         EVP_add_digest_alias(SN_ripemd160, "rmd160");
296 #endif
297 #ifndef OPENSSL_NO_SHA256
298         EVP_add_digest(EVP_sha224());
299         EVP_add_digest(EVP_sha256());
300 #endif
301 #ifndef OPENSSL_NO_SHA512
302         EVP_add_digest(EVP_sha384());
303         EVP_add_digest(EVP_sha512());
304 #endif
305 #ifndef OPENSSL_NO_SM3
306         EVP_add_digest(EVP_sm3());
307 #endif
308 #ifndef OPENSSL_NO_WHIRLPOOL
309         EVP_add_digest(EVP_whirlpool());
310 #endif
311 }
312
313 void
314 OpenSSL_add_all_digests(void)
315 {
316         static pthread_once_t add_all_digests_once = PTHREAD_ONCE_INIT;
317         (void) pthread_once(&add_all_digests_once, OpenSSL_add_all_digests_internal);
318 }
319
320 void
321 OPENSSL_add_all_algorithms_noconf(void)
322 {
323         OPENSSL_cpuid_setup();
324         OpenSSL_add_all_ciphers();
325         OpenSSL_add_all_digests();
326 }
327
328 void
329 OPENSSL_add_all_algorithms_conf(void)
330 {
331         OPENSSL_add_all_algorithms_noconf();
332         OPENSSL_config(NULL);
333 }