使用 C++ 和 bcrypt 标头时编译错误

Compile errors when using C++ and bcrypt header

本文关键字:编译 错误 C++ bcrypt 使用      更新时间:2023-10-16

我正在尝试测试Windows Bcrypt。我有一个测试程序:

#include <bcrypt.h>
#include <iostream>
#include <string>
#pragma comment (lib, "bcrypt.lib")
int main(int argc, char* argv[])
{
return 0;
}

尝试编译它:

>cl.exe /DWINVER=0x0600 /TP /GR /EHsc bcrypt-test.cpp /link /out:bcrypt-test.exe
Microsoft (R) C/C++ Optimizing Compiler Version 19.00.24210 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
bcrypt-test.cpp
C:Program Files (x86)Windows Kits10include10.0.17763.0sharedbcrypt.h(39):
error C2059: syntax error: 'return'
C:Program Files (x86)Windows Kits10include10.0.17763.0sharedbcrypt.h(40):
error C2143: syntax error: missing ';' before '*'
C:Program Files (x86)Windows Kits10include10.0.17763.0sharedbcrypt.h(40):
error C4430: missing type specifier - int assumed. Note: C++ does not support d
efault-int
...
C:Program Files (x86)Windows Kits10include10.0.17763.0sharedbcrypt.h(681)
: error C3646: 'cbKeyLength': unknown override specifier
C:Program Files (x86)Windows Kits10include10.0.17763.0sharedbcrypt.h(681)
: fatal error C1003: error count exceeds 100; stopping compilation

我正在使用Visual C++ x64 生成工具命令提示符。据我了解,Bcrypt需要针对Vista或更高版本。WINVER=0x0600应满足要求。我在 MSDN 论坛的 bcrypt.h build error?上发现了一个类似的问题,它说要使用现代 SDK。我相信Windows Kit SDK应该满足这个要求。

为什么我遇到编译错误,如何解决?


bcrypt.h中的第 39 行是下面的第一个 typedef。序言,如版权和标题护罩,为简洁起见被跳过。

#ifndef WINAPI
#define WINAPI __stdcall
#endif
#ifndef _NTDEF_
typedef _Return_type_success_(return >= 0) LONG NTSTATUS;
typedef NTSTATUS *PNTSTATUS;
#endif
#ifndef BCRYPT_SUCCESS
#define BCRYPT_SUCCESS(Status) (((NTSTATUS)(Status)) >= 0)
#endif

您缺少包含。

#include <Windows.h> // <- Added this
#include <bcrypt.h>
#include <iostream>
#include <string>
#pragma comment (lib, "bcrypt.lib")
int main()
{
return 0;
}