Module: wine Branch: master Commit: fcb553ffc2caec728381fc577f1774432d3a969e URL: https://gitlab.winehq.org/wine/wine/-/commit/fcb553ffc2caec728381fc577f17744...
Author: Martin Storsjö martin@martin.st Date: Wed Aug 24 10:58:48 2022 +0300
bcrypt: Fix the non-PE build after ECDH_P384 was added.
This fixes non-PE builds after 5253c8d77e8e7dc5770981e97e67348f393b99b9.
Signed-off-by: Martin Storsjö martin@martin.st
---
include/bcrypt.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/bcrypt.h b/include/bcrypt.h index ba44c01bbc9..c9c4cb7b1fd 100644 --- a/include/bcrypt.h +++ b/include/bcrypt.h @@ -159,6 +159,7 @@ static const WCHAR BCRYPT_AES_ALGORITHM[] = {'A','E','S',0}; static const WCHAR BCRYPT_DES_ALGORITHM[] = {'D','E','S',0}; static const WCHAR BCRYPT_DSA_ALGORITHM[] = {'D','S','A',0}; static const WCHAR BCRYPT_ECDH_P256_ALGORITHM[] = {'E','C','D','H','_','P','2','5','6',0}; +static const WCHAR BCRYPT_ECDH_P384_ALGORITHM[] = {'E','C','D','H','_','P','3','8','4',0}; static const WCHAR BCRYPT_ECDSA_P256_ALGORITHM[] = {'E','C','D','S','A','_','P','2','5','6',0}; static const WCHAR BCRYPT_ECDSA_P384_ALGORITHM[] = {'E','C','D','S','A','_','P','3','8','4',0}; static const WCHAR BCRYPT_ECDSA_P521_ALGORITHM[] = {'E','C','D','S','A','_','P','5','2','1',0};