News:

I have updated the spam detection on registrations, and as such I am enabling new users.  If we have spam, I will change it back to by approval.

Main Menu

Compiling phatsig.c under windows

Started by sulaco2k, December 09, 2006, 12:28:15 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

sulaco2k

Hi guys, im having trouble compiling phatsig.c on my windows xp box. I am using the correct versions of libtomcrypt/libtommath and have the custom header file in place, yet I am seeing the following errors. Any ideas, thanks

1>Linking...
1>Main.obj : error LNK2019: unresolved external symbol _rsa_import referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol _find_prng referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol _find_hash referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)
1>Main.obj : error LNK2019: unresolved external symbol _register_hash referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)
1>Main.obj : error LNK2001: unresolved external symbol _md5_desc
1>Main.obj : error LNK2001: unresolved external symbol _ltc_mp
1>Main.obj : error LNK2001: unresolved external symbol _ltm_desc
1>Main.obj : error LNK2019: unresolved external symbol _register_prng referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)
1>Main.obj : error LNK2001: unresolved external symbol _sprng_desc
1>Main.obj : error LNK2019: unresolved external symbol _rsa_exptmod referenced in function _main
1>Main.obj : error LNK2019: unresolved external symbol _md5_done referenced in function "void __cdecl get_md5_hash_for_file(char *,unsigned char *)" (?get_md5_hash_for_file@@YAXPADPAE@Z)
1>Main.obj : error LNK2019: unresolved external symbol _md5_process referenced in function "void __cdecl get_md5_hash_for_file(char *,unsigned char *)" (?get_md5_hash_for_file@@YAXPADPAE@Z)
1>Main.obj : error LNK2019: unresolved external symbol _md5_init referenced in function "void __cdecl get_md5_hash_for_file(char *,unsigned char *)" (?get_md5_hash_for_file@@YAXPADPAE@Z)
1>C:\Documents and Settings\Administrator\Desktop\Phatbox\Phatsig\Debug\Phatsig.exe : fatal error LNK1120: 13 unresolved externals

Terry_Kennedy

QuoteHi guys, im having trouble compiling phatsig.c on my windows xp box. I am using the correct versions of libtomcrypt/libtommath and have the custom header file in place, yet I am seeing the following errors. Any ideas, thanks

1>Linking...
1>Main.obj : error LNK2019: unresolved external symbol _rsa_import referenced in function "void __cdecl init_crypto(void)" (?init_crypto@@YAXXZ)

As a guess, this looks like the linker isn't finding / using your crypto libraries. What sort of command line are you using?

sulaco2k

#2
Hi,

I am compiling the libtommath and libtomcrypt libraries using the supplied makefile.msvc files using the following command:

nmake /Y /f makefile.msvc

I add the libtommath path to the include path to build libtomcrypt.

I am using vc++ 2005 and have included both lib files to the project, and included the header directories.

I think somehow I am building the libraries incorrectly?