[PATCH 0/1] MR700: bcrypt: Fix the non-PE build after ECDH_P384 was added
This fixes non-PE builds after 5253c8d77e8e7dc5770981e97e67348f393b99b9 (!694) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/700
From: Martin Storsjö <martin(a)martin.st> This fixes non-PE builds after 5253c8d77e8e7dc5770981e97e67348f393b99b9. Signed-off-by: Martin Storsjö <martin(a)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}; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/700
This merge request was approved by Hans Leidekker. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/700
participants (2)
-
Hans Leidekker (@hans) -
Martin Storsjö