| OLD | NEW |
| 1 /* crypto/evp/c_all.c */ | 1 /* crypto/evp/c_all.c */ |
| 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 * All rights reserved. | 3 * All rights reserved. |
| 4 * | 4 * |
| 5 * This package is an SSL implementation written | 5 * This package is an SSL implementation written |
| 6 * by Eric Young (eay@cryptsoft.com). | 6 * by Eric Young (eay@cryptsoft.com). |
| 7 * The implementation was written so as to conform with Netscapes SSL. | 7 * The implementation was written so as to conform with Netscapes SSL. |
| 8 * | 8 * |
| 9 * This library is free for commercial and non-commercial use as long as | 9 * This library is free for commercial and non-commercial use as long as |
| 10 * the following conditions are aheared to. The following conditions | 10 * the following conditions are aheared to. The following conditions |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 { | 76 { |
| 77 /* | 77 /* |
| 78 * For the moment OPENSSL_cpuid_setup does something | 78 * For the moment OPENSSL_cpuid_setup does something |
| 79 * only on IA-32, but we reserve the option for all | 79 * only on IA-32, but we reserve the option for all |
| 80 * platforms... | 80 * platforms... |
| 81 */ | 81 */ |
| 82 OPENSSL_cpuid_setup(); | 82 OPENSSL_cpuid_setup(); |
| 83 OpenSSL_add_all_ciphers(); | 83 OpenSSL_add_all_ciphers(); |
| 84 OpenSSL_add_all_digests(); | 84 OpenSSL_add_all_digests(); |
| 85 #ifndef OPENSSL_NO_ENGINE | 85 #ifndef OPENSSL_NO_ENGINE |
| 86 # if defined(__OpenBSD__) || defined(__FreeBSD__) | 86 # if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV) |
| 87 ENGINE_setup_bsd_cryptodev(); | 87 ENGINE_setup_bsd_cryptodev(); |
| 88 # endif | 88 # endif |
| 89 #endif | 89 #endif |
| 90 } | 90 } |
| OLD | NEW |