Thanks, I am starting to understand the structure. I now made the same structure in my CMake files. 11 engines and the modules crypto and ssl. But the Crypto module has a linker problem. 1>------ Build started: Project: openssl.crypto, Configuration: Debug Win32 ------ 1>Linking... 1> Creating library Y:\solutions\si-refinfrablue\proglibs\OpenSSL\crypto\Debug\openssl.crypt o.lib and object Y:\solutions\si-refinfrablue\proglibs\OpenSSL\crypto\Debug\openssl.crypt o.exp 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_ecb referenced in function _OpenSSL_add_all_ciphers 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_cbc referenced in function _OpenSSL_add_all_ciphers 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_ofb referenced in function _OpenSSL_add_all_ciphers 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_cfb8 referenced in function _OpenSSL_add_all_ciphers 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_cfb1 referenced in function _OpenSSL_add_all_ciphers 1>c_allc.obj : error LNK2019: unresolved external symbol _EVP_des_cfb64 referenced in function _OpenSSL_add_all_ciphers 1>e_old.obj : error LNK2001: unresolved external symbol _EVP_des_cfb64 1>Y:\solutions\si-refinfrablue\proglibs\OpenSSL\crypto\Debug\openssl.cry pto.dll : fatal error LNK1120: 6 unresolved externals 1>Build log was saved at file://y:\solutions\si-refinfrablue\proglibs\OpenSSL\crypto\openssl.cryp to.dir\Debug\BuildLog.htm 1>openssl.crypto - 8 error(s), 0 warning(s) ========== Build: 0 succeeded, 1 failed, 1 up-to-date, 0 skipped ==========
When I search the code for "EVP_des_ecb", I find it in evp.h 00659: const EVP_CIPHER *EVP_des_ecb(void); 00660: const EVP_CIPHER *EVP_des_ede(void); 00661: const EVP_CIPHER *EVP_des_ede3(void); 00662: const EVP_CIPHER *EVP_des_ede_ecb(void); 00663: const EVP_CIPHER *EVP_des_ede3_ecb(void); 00664: const EVP_CIPHER *EVP_des_cfb64(void); and c_allc.c. 00092: EVP_add_cipher(EVP_des_ecb()); 00093: EVP_add_cipher(EVP_des_ede()); 00094: EVP_add_cipher(EVP_des_ede3()); But I can't find an implementation for these functions and the 'normal' OpenSSL build evironment doesn't seem to have problems with these functions. Rob Deckers This message and attachment(s) are intended solely for use by the addressee and may contain information that is privileged, confidential or otherwise exempt from disclosure under applicable law. If you are not the intended recipient or agent thereof responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone and with a 'reply' message. Thank you for your co-operation.