> The idea.h header file is not installed when openssl 0.9.7m is > compiled on windows system. This header file is included from > evp.h header file.
Because the IDEA algorithm is covered by patents in some parts of the world, many compiled builds of OpenSSL don't include it. The "evp.h" header file contains this logic: #ifndef OPENSSL_NO_IDEA #include <openssl/idea.h> #endif The "opensslconf.h" header file should define OPENSSL_NO_IDEA with logic like this: #ifndef OPENSSL_NO_IDEA # define OPENSSL_NO_IDEA #endif It looks like your header files are inconsistent. DS ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [EMAIL PROTECTED]
