我的项目有问题。
我使用QtCreator和MinGW以及Qt 5.4.0
当我尝试编译时,这个简单的行会给我带来一些错误:
CryptUnprotectData(data.password, NULL, NULL, NULL, NULL, (DWORD) 0, data.uncryptedPassword);
(使用DATA_BLOB * data.password和DATA_BLOB * data.uncryptedPassword)
得到我:
undefined reference to `_imp__CryptUnprotectData@28'
如标题所述,我在我的.pro中包含了Crypt32.Lib文件:
QT += core gui
QT += sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ChromePass
LIBS += -L$$PWD/ -lCrypt32
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
chromehandler.cpp \
passdata.cpp
HEADERS += mainwindow.h \
chromehandler.h \
passdata.h
FORMS += mainwindow.ui
按照MSDN api的说明,包括wincrypt.h:
#include <windows.h>
#include <wincrypt.h>
#include <cstdlib>
#include <fstream>
错误仍然存在,我检查了wincrypt.h
以确保定义了CryptUnprotectData
,它是:
WINIMPM WINBOOL WINAPI CryptUnprotectData(DATA_BLOB *pDataIn,LPWSTR *ppszDataDescr,DATA_BLOB *pOptionalEntropy,PVOID pvReserved,CRYPTPROTECT_PROMPTSTRUCT *pPromptStruct,DWORD dwFlags,DATA_BLOB *pDataOut);
我一整天都在努力......有没有人有线索? 非常感谢你!
答案 0 :(得分:0)
线索是crypt32
库不是用mingw构建的,这就是你得到链接错误的原因。
坏消息是没有简单的方法来解决这个问题。您可以在这里阅读一些解决方法:
MingW missing some functions from the Win32 Crypto API
关于这个问题的Qt论坛讨论可以在这里找到:
https://forum.qt.io/topic/25527/cannot-find-how-to-link-to-crypt32-dll