[PATCH] crypt32: Add missing CRYPT_STRING dwFlags enums.
Two new option enums were introduced (Vista+) for CryptBinaryToString et al (base64.c). Adding their enum definitions to support future implementations. Signed-off-by: Thanasis Papoutsidakis <pwnzorbot4000(a)gmail.com> --- include/wincrypt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/wincrypt.h b/include/wincrypt.h index bcb67ff091..85be699fd0 100644 --- a/include/wincrypt.h +++ b/include/wincrypt.h @@ -2833,6 +2833,8 @@ typedef struct _CTL_FIND_SUBJECT_PARA #define CRYPT_STRING_BASE64X509CRLHEADER 0x00000009 #define CRYPT_STRING_HEXADDR 0x0000000a #define CRYPT_STRING_HEXASCIIADDR 0x0000000b +#define CRYPT_STRING_HEXRAW 0x0000000c +#define CRYPT_STRING_STRICT 0x20000000 #define CRYPT_STRING_NOCRLF 0x40000000 #define CRYPT_STRING_NOCR 0x80000000 -- 2.20.1
Hi, While running your changed tests on Windows, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=46122 Your paranoid android. === debian9 (build log) === error: patch failed: include/wincrypt.h:2833 Task: Patch failed to apply === debian9 (build log) === error: patch failed: include/wincrypt.h:2833 Task: Patch failed to apply
participants (2)
-
Marvin -
Thanasis Papoutsidakis