libmcrypt 和 MS Visual C++
有人尝试过使用 libmcrypt 和 Visual C++ 吗?我试图使用 Crypto++,但它似乎不完全兼容 - 我需要使用 linux libmcrypt 解密 PHP 中加密的数据。
我只找到了 cygwin 版本的 libmcrypt,但没有 .lib 文件或标头。
我正在使用 RIJNDAEL_128 - 也许有更简单的方法在 Visual C++ 中解密它?
谢谢
Has anyone tried using libmcrypt and visual c++? I was trying to use Crypto++ but it seems not fully compatible - and I need to decrypt data encrypted in PHP using linux libmcrypt.
I found only cygwin version of libmcrypt but no .lib files or header.
I'm using RIJNDAEL_128 - maybe there is easier way to decrypt it in Visual C++?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 Crypto++ 没有坦白地完成这项工作,我会感到惊讶。它使用起来有点尴尬,而且文档也相当糟糕,但我过去发现它非常强大。
RIJNDAEL_128 我假设你指的是 AES?在这种情况下,Crypto++ 可以提供帮助。这篇codeproject 文章也应该是一个很好的起点。
I'd be surprised if Crypto++ didn't do the job frankly. It is a bit awkward to use and is fairly badly documented, but I have found it very powerful in the past.
By RIJNDAEL_128 I am assuming you mean AES? In which case, Crypto++ can help . This codeproject article ought to be a good starting point too.
我终于找到了一个与 Visual Studio 兼容的可用 libmcrypt 版本
它在这里 http://files.edin.dk/php/win32/mcrypt/ dev/ 并正常工作。
I finally found a working libmcrypt version compatible with Visual Studio
It is here http://files.edin.dk/php/win32/mcrypt/dev/ and worked correctly.