155714Skris/* ssl/ssl_algs.c */
255714Skris/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
355714Skris * All rights reserved.
455714Skris *
555714Skris * This package is an SSL implementation written
655714Skris * by Eric Young (eay@cryptsoft.com).
755714Skris * The implementation was written so as to conform with Netscapes SSL.
8280304Sjkim *
955714Skris * This library is free for commercial and non-commercial use as long as
1055714Skris * the following conditions are aheared to.  The following conditions
1155714Skris * apply to all code found in this distribution, be it the RC4, RSA,
1255714Skris * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
1355714Skris * included with this distribution is covered by the same copyright terms
1455714Skris * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15280304Sjkim *
1655714Skris * Copyright remains Eric Young's, and as such any Copyright notices in
1755714Skris * the code are not to be removed.
1855714Skris * If this package is used in a product, Eric Young should be given attribution
1955714Skris * as the author of the parts of the library used.
2055714Skris * This can be in the form of a textual message at program startup or
2155714Skris * in documentation (online or textual) provided with the package.
22280304Sjkim *
2355714Skris * Redistribution and use in source and binary forms, with or without
2455714Skris * modification, are permitted provided that the following conditions
2555714Skris * are met:
2655714Skris * 1. Redistributions of source code must retain the copyright
2755714Skris *    notice, this list of conditions and the following disclaimer.
2855714Skris * 2. Redistributions in binary form must reproduce the above copyright
2955714Skris *    notice, this list of conditions and the following disclaimer in the
3055714Skris *    documentation and/or other materials provided with the distribution.
3155714Skris * 3. All advertising materials mentioning features or use of this software
3255714Skris *    must display the following acknowledgement:
3355714Skris *    "This product includes cryptographic software written by
3455714Skris *     Eric Young (eay@cryptsoft.com)"
3555714Skris *    The word 'cryptographic' can be left out if the rouines from the library
3655714Skris *    being used are not cryptographic related :-).
37280304Sjkim * 4. If you include any Windows specific code (or a derivative thereof) from
3855714Skris *    the apps directory (application code) you must include an acknowledgement:
3955714Skris *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40280304Sjkim *
4155714Skris * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
4255714Skris * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4355714Skris * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4455714Skris * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4555714Skris * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4655714Skris * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4755714Skris * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4855714Skris * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4955714Skris * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5055714Skris * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5155714Skris * SUCH DAMAGE.
52280304Sjkim *
5355714Skris * The licence and distribution terms for any publically available version or
5455714Skris * derivative of this code cannot be changed.  i.e. this code cannot simply be
5555714Skris * copied and put under another distribution licence
5655714Skris * [including the GNU Public Licence.]
5755714Skris */
5855714Skris
5955714Skris#include <stdio.h>
6055714Skris#include <openssl/objects.h>
6155714Skris#include <openssl/lhash.h>
6255714Skris#include "ssl_locl.h"
6355714Skris
6455714Skrisint SSL_library_init(void)
65280304Sjkim{
66109998Smarkm
67109998Smarkm#ifndef OPENSSL_NO_DES
68280304Sjkim    EVP_add_cipher(EVP_des_cbc());
69280304Sjkim    EVP_add_cipher(EVP_des_ede3_cbc());
7055714Skris#endif
71109998Smarkm#ifndef OPENSSL_NO_IDEA
72280304Sjkim    EVP_add_cipher(EVP_idea_cbc());
7355714Skris#endif
74109998Smarkm#ifndef OPENSSL_NO_RC4
75280304Sjkim    EVP_add_cipher(EVP_rc4());
76280304Sjkim# if !defined(OPENSSL_NO_MD5) && (defined(__x86_64) || defined(__x86_64__))
77280304Sjkim    EVP_add_cipher(EVP_rc4_hmac_md5());
78280304Sjkim# endif
79238405Sjkim#endif
80109998Smarkm#ifndef OPENSSL_NO_RC2
81280304Sjkim    EVP_add_cipher(EVP_rc2_cbc());
82280304Sjkim    /*
83280304Sjkim     * Not actually used for SSL/TLS but this makes PKCS#12 work if an
84280304Sjkim     * application only calls SSL_library_init().
85280304Sjkim     */
86280304Sjkim    EVP_add_cipher(EVP_rc2_40_cbc());
87109998Smarkm#endif
88109998Smarkm#ifndef OPENSSL_NO_AES
89280304Sjkim    EVP_add_cipher(EVP_aes_128_cbc());
90280304Sjkim    EVP_add_cipher(EVP_aes_192_cbc());
91280304Sjkim    EVP_add_cipher(EVP_aes_256_cbc());
92280304Sjkim    EVP_add_cipher(EVP_aes_128_gcm());
93280304Sjkim    EVP_add_cipher(EVP_aes_256_gcm());
94280304Sjkim# if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
95280304Sjkim    EVP_add_cipher(EVP_aes_128_cbc_hmac_sha1());
96280304Sjkim    EVP_add_cipher(EVP_aes_256_cbc_hmac_sha1());
97280304Sjkim# endif
98246772Sjkim
99238405Sjkim#endif
100162911Ssimon#ifndef OPENSSL_NO_CAMELLIA
101280304Sjkim    EVP_add_cipher(EVP_camellia_128_cbc());
102280304Sjkim    EVP_add_cipher(EVP_camellia_256_cbc());
103162911Ssimon#endif
104162911Ssimon
105194206Ssimon#ifndef OPENSSL_NO_SEED
106280304Sjkim    EVP_add_cipher(EVP_seed_cbc());
107194206Ssimon#endif
108280304Sjkim
109109998Smarkm#ifndef OPENSSL_NO_MD5
110280304Sjkim    EVP_add_digest(EVP_md5());
111280304Sjkim    EVP_add_digest_alias(SN_md5, "ssl2-md5");
112280304Sjkim    EVP_add_digest_alias(SN_md5, "ssl3-md5");
11355714Skris#endif
114109998Smarkm#ifndef OPENSSL_NO_SHA
115280304Sjkim    EVP_add_digest(EVP_sha1()); /* RSA with sha1 */
116280304Sjkim    EVP_add_digest_alias(SN_sha1, "ssl3-sha1");
117280304Sjkim    EVP_add_digest_alias(SN_sha1WithRSAEncryption, SN_sha1WithRSA);
11855714Skris#endif
119215697Ssimon#ifndef OPENSSL_NO_SHA256
120280304Sjkim    EVP_add_digest(EVP_sha224());
121280304Sjkim    EVP_add_digest(EVP_sha256());
122215697Ssimon#endif
123215697Ssimon#ifndef OPENSSL_NO_SHA512
124280304Sjkim    EVP_add_digest(EVP_sha384());
125280304Sjkim    EVP_add_digest(EVP_sha512());
126215697Ssimon#endif
127109998Smarkm#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_DSA)
128280304Sjkim    EVP_add_digest(EVP_dss1()); /* DSA with sha1 */
129280304Sjkim    EVP_add_digest_alias(SN_dsaWithSHA1, SN_dsaWithSHA1_2);
130280304Sjkim    EVP_add_digest_alias(SN_dsaWithSHA1, "DSS1");
131280304Sjkim    EVP_add_digest_alias(SN_dsaWithSHA1, "dss1");
13255714Skris#endif
133160814Ssimon#ifndef OPENSSL_NO_ECDSA
134280304Sjkim    EVP_add_digest(EVP_ecdsa());
135160814Ssimon#endif
136280304Sjkim    /* If you want support for phased out ciphers, add the following */
13755714Skris#if 0
138280304Sjkim    EVP_add_digest(EVP_sha());
139280304Sjkim    EVP_add_digest(EVP_dss());
14055714Skris#endif
141160814Ssimon#ifndef OPENSSL_NO_COMP
142280304Sjkim    /*
143280304Sjkim     * This will initialise the built-in compression algorithms. The value
144280304Sjkim     * returned is a STACK_OF(SSL_COMP), but that can be discarded safely
145280304Sjkim     */
146280304Sjkim    (void)SSL_COMP_get_compression_methods();
147160814Ssimon#endif
148280304Sjkim    /* initialize cipher/digest methods table */
149280304Sjkim    ssl_load_ciphers();
150280304Sjkim    return (1);
151280304Sjkim}
152