如何集成加密货币++进入 C++ Builder 2010 / [ILINK32 错误]

发布于 2024-09-27 21:16:05 字数 744 浏览 4 评论 0原文

我试图通过 C++ Builder 2010 编译以下(示例)代码:

http://swarmapps.wordpress.com/2009/11/24/a-simplification-wrapper-for-the-crypto-library/

( http://pastebin.com/f6bd13d59 / example.cpp )

( http://pastebin.com/f2fc53f83 / BasicCryptoPPWrap.h )

没有编译器错误,但链接失败:

[ILINK32 错误] 错误:从 E:\TEST\DEBUG\FILE1.OBJ 引用的无法解析的外部“CryptoPP::SimpleKeyingInterface::SetKey(const unsigned char *, unsigned int, CryptoPP::NameValuePairs&)”

我该如何解决此问题?

I was trying to compile the following (example) code via C++ Builder 2010:

http://swarmapps.wordpress.com/2009/11/24/a-simplification-wrapper-for-the-crypto-library/

( http://pastebin.com/f6bd13d59 / example.cpp )

( http://pastebin.com/f2fc53f83 / BasicCryptoPPWrap.h )

There were no compiler errors but the linking failed:

[ILINK32 Error] Error: Unresolved external 'CryptoPP::SimpleKeyingInterface::SetKey(const unsigned char *, unsigned int, CryptoPP::NameValuePairs&)' referenced from E:\TEST\DEBUG\FILE1.OBJ

How can I fix this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城挽邺 2024-10-04 21:16:05

来自同一页面

包装器不是独立的
解决方案。它需要你的代码
链接到 libcryptopp 并知道在哪里
找到 cryptopp 头文件。这
Crypto++ 网站可以帮助您设置
你的系统。一旦你得到
验证套件成功运行,
您将能够使用这个包装器。

from the same page

The wrapper is not a standalone
solution. It requires your code to
link to libcryptopp and know where the
cryptopp header files are found. The
Crypto++ website can help you set up
your system. Once you get the
validation suite to run successfully,
you will be able to use this wrapper.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文