C和hashlib LNK错误

时间:2013-03-29 01:47:54

标签: .net hash c++-cli linker-errors sha1

好。所以我正在使用Visual Studios 2010 - > Visual C ++和.NET Framework(Windows窗体应用程序),当我尝试使用hashlib ++散列字符串时,我得到多个LNK错误。

这是hashlib ++:http://hashlib2plus.sourceforge.net/

这是我的哈希代码:

//I have more Includes but according to http://hashlib2plus.sourceforge.net/example.html these are the only ones required for hashlib++ so these are the ones i am putting on display.
#include <string>
#include <iostream>
#include <hashlibpp.h>

//I skipped adding namespaces to my display code

private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) {

                 try{
                     String^ atmp_user = textBox1->Text;
                     String^ user = (myReader->GetString(1));//Connecting to MySQL Databases and grabbing usernames
                     String^ atmp_pass = textBox2->Text;
                     String^ pass = (myReader->GetString(2));
                     atmp_pass->ToLower();//LowerCase
                     atmp_user->ToLower();
                     String^ total1 = gcnew String(atmp_user+atmp_pass);

                     string totala;

                     MarshalString(total1, totala);//Converting String^ to an std::string

                     hashwrapper *myWrapper = new sha1wrapper();//SHA1 code begins

         string hash1 = myWrapper->getHashFromString(totala);

 delete myWrapper;//SHA1 code ends

                     if(atmp_user == user && hash1 == pass){
                         textBox1->Text = ("It worked!");
                     }
                     }
                 } catch(Exception^ex) {
                     MessageBox::Show(ex->Message);
                 }
         }

这是我的错误日志:

Error   2   error LNK2028: unresolved token (0A00001E) "public: __clrcall sha1wrapper::sha1wrapper(void)" (??0sha1wrapper@@$$FQAM@XZ) referenced in function "private: void __clrcall Launcher::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" (?button1_Click@Form1@Launcher@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z)   C:\Users\Jeremy\Documents\Visual Studio 2010\Projects\Launcher\Launcher\Launcher.obj
Error   3   error LNK2019: unresolved external symbol "public: __clrcall sha1wrapper::sha1wrapper(void)" (??0sha1wrapper@@$$FQAM@XZ) referenced in function "private: void __clrcall Launcher::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" (?button1_Click@Form1@Launcher@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z)    C:\Users\Jeremy\Documents\Visual Studio 2010\Projects\Launcher\Launcher\Launcher.obj
Error   4   error LNK1120: 2 unresolved externals   C:\Users\Jeremy\Documents\Visual Studio 2010\Projects\Launcher\Release\Launcher.exe

任何帮助都会非常感谢大家。 :)我过去几天一直在努力创建一个安全的登录脚本。我到处都在不断遇到LNK错误。 :\

1 个答案:

答案 0 :(得分:0)

解决。我不得不关闭预编译的头文件。