1

我的一个项目有问题。
我将 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);

我一直在尝试一整天......有人有线索吗?
非常感谢 !

4

1 回答 1

0

线索是crypt32库不是用 mingw 构建的,这就是你得到链接错误的原因。

坏消息是没有简单的方法来解决这个问题。您可以在此处阅读一些解决方法:

MingW 缺少 Win32 Crypto API 中的一些函数

Qt 论坛上关于这个问题的讨论可以在这里找到:

https://forum.qt.io/topic/25527/cannot-find-how-to-link-to-crypt32-dl​​l

于 2015-06-03T15:56:15.260 回答