Eneboo - Documentación para desarrolladores
|
00001 /* crypto/rand/rand_lcl.h */ 00002 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 00003 * All rights reserved. 00004 * 00005 * This package is an SSL implementation written 00006 * by Eric Young (eay@cryptsoft.com). 00007 * The implementation was written so as to conform with Netscapes SSL. 00008 * 00009 * This library is free for commercial and non-commercial use as long as 00010 * the following conditions are aheared to. The following conditions 00011 * apply to all code found in this distribution, be it the RC4, RSA, 00012 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 00013 * included with this distribution is covered by the same copyright terms 00014 * except that the holder is Tim Hudson (tjh@cryptsoft.com). 00015 * 00016 * Copyright remains Eric Young's, and as such any Copyright notices in 00017 * the code are not to be removed. 00018 * If this package is used in a product, Eric Young should be given attribution 00019 * as the author of the parts of the library used. 00020 * This can be in the form of a textual message at program startup or 00021 * in documentation (online or textual) provided with the package. 00022 * 00023 * Redistribution and use in source and binary forms, with or without 00024 * modification, are permitted provided that the following conditions 00025 * are met: 00026 * 1. Redistributions of source code must retain the copyright 00027 * notice, this list of conditions and the following disclaimer. 00028 * 2. Redistributions in binary form must reproduce the above copyright 00029 * notice, this list of conditions and the following disclaimer in the 00030 * documentation and/or other materials provided with the distribution. 00031 * 3. All advertising materials mentioning features or use of this software 00032 * must display the following acknowledgement: 00033 * "This product includes cryptographic software written by 00034 * Eric Young (eay@cryptsoft.com)" 00035 * The word 'cryptographic' can be left out if the rouines from the library 00036 * being used are not cryptographic related :-). 00037 * 4. If you include any Windows specific code (or a derivative thereof) from 00038 * the apps directory (application code) you must include an acknowledgement: 00039 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 00040 * 00041 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 00042 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00043 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00044 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 00045 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00046 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00047 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00048 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00049 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00050 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00051 * SUCH DAMAGE. 00052 * 00053 * The licence and distribution terms for any publically available version or 00054 * derivative of this code cannot be changed. i.e. this code cannot simply be 00055 * copied and put under another distribution licence 00056 * [including the GNU Public Licence.] 00057 */ 00058 /* ==================================================================== 00059 * Copyright (c) 1998-2000 The OpenSSL Project. All rights reserved. 00060 * 00061 * Redistribution and use in source and binary forms, with or without 00062 * modification, are permitted provided that the following conditions 00063 * are met: 00064 * 00065 * 1. Redistributions of source code must retain the above copyright 00066 * notice, this list of conditions and the following disclaimer. 00067 * 00068 * 2. Redistributions in binary form must reproduce the above copyright 00069 * notice, this list of conditions and the following disclaimer in 00070 * the documentation and/or other materials provided with the 00071 * distribution. 00072 * 00073 * 3. All advertising materials mentioning features or use of this 00074 * software must display the following acknowledgment: 00075 * "This product includes software developed by the OpenSSL Project 00076 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 00077 * 00078 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 00079 * endorse or promote products derived from this software without 00080 * prior written permission. For written permission, please contact 00081 * openssl-core@openssl.org. 00082 * 00083 * 5. Products derived from this software may not be called "OpenSSL" 00084 * nor may "OpenSSL" appear in their names without prior written 00085 * permission of the OpenSSL Project. 00086 * 00087 * 6. Redistributions of any form whatsoever must retain the following 00088 * acknowledgment: 00089 * "This product includes software developed by the OpenSSL Project 00090 * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 00091 * 00092 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 00093 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00094 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00095 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 00096 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00097 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 00098 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00099 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00100 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 00101 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 00103 * OF THE POSSIBILITY OF SUCH DAMAGE. 00104 * ==================================================================== 00105 * 00106 * This product includes cryptographic software written by Eric Young 00107 * (eay@cryptsoft.com). This product includes software written by Tim 00108 * Hudson (tjh@cryptsoft.com). 00109 * 00110 */ 00111 00112 #ifndef HEADER_RAND_LCL_H 00113 #define HEADER_RAND_LCL_H 00114 00115 #define ENTROPY_NEEDED 32 /* require 256 bits = 32 bytes of randomness */ 00116 00117 00118 #if !defined(USE_MD5_RAND) && !defined(USE_SHA1_RAND) && !defined(USE_MDC2_RAND) && !defined(USE_MD2_RAND) 00119 #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1) 00120 #define USE_SHA1_RAND 00121 #elif !defined(OPENSSL_NO_MD5) 00122 #define USE_MD5_RAND 00123 #elif !defined(OPENSSL_NO_MDC2) && !defined(OPENSSL_NO_DES) 00124 #define USE_MDC2_RAND 00125 #elif !defined(OPENSSL_NO_MD2) 00126 #define USE_MD2_RAND 00127 #else 00128 #error No message digest algorithm available 00129 #endif 00130 #endif 00131 00132 #include <openssl/evp.h> 00133 #define MD_Update(a,b,c) EVP_DigestUpdate(a,b,c) 00134 #define MD_Final(a,b) EVP_DigestFinal_ex(a,b,NULL) 00135 #if defined(USE_MD5_RAND) 00136 #include <openssl/md5.h> 00137 #define MD_DIGEST_LENGTH MD5_DIGEST_LENGTH 00138 #define MD_Init(a) EVP_DigestInit_ex(a,EVP_md5(), NULL) 00139 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md5(), NULL) 00140 #elif defined(USE_SHA1_RAND) 00141 #include <openssl/sha.h> 00142 #define MD_DIGEST_LENGTH SHA_DIGEST_LENGTH 00143 #define MD_Init(a) EVP_DigestInit_ex(a,EVP_sha1(), NULL) 00144 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_sha1(), NULL) 00145 #elif defined(USE_MDC2_RAND) 00146 #include <openssl/mdc2.h> 00147 #define MD_DIGEST_LENGTH MDC2_DIGEST_LENGTH 00148 #define MD_Init(a) EVP_DigestInit_ex(a,EVP_mdc2(), NULL) 00149 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_mdc2(), NULL) 00150 #elif defined(USE_MD2_RAND) 00151 #include <openssl/md2.h> 00152 #define MD_DIGEST_LENGTH MD2_DIGEST_LENGTH 00153 #define MD_Init(a) EVP_DigestInit_ex(a,EVP_md2(), NULL) 00154 #define MD(a,b,c) EVP_Digest(a,b,c,NULL,EVP_md2(), NULL) 00155 #endif 00156 00157 #ifndef OPENSSL_NO_ENGINE 00158 void int_RAND_set_callbacks( 00159 int (*set_rand_func)(const RAND_METHOD *meth, 00160 const RAND_METHOD **pmeth), 00161 const RAND_METHOD *(*get_rand_func) 00162 (const RAND_METHOD **pmeth)); 00163 int eng_RAND_set_rand_method(const RAND_METHOD *meth, 00164 const RAND_METHOD **pmeth); 00165 const RAND_METHOD *eng_RAND_get_rand_method(const RAND_METHOD **pmeth); 00166 #endif 00167 00168 00169 #endif