C和hashlib LNK错误(C and hashlib LNK errors)

2019-11-01 22:17发布

好的。 所以我用视觉工作室2010 - > Visual C ++和.NET框架(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错误,到处都去。 :\

Answer 1:

解决了。 我不得不关闭预编译头。



文章来源: C and hashlib LNK errors