Module: wine Branch: master Commit: 473b269d70c2a280411de47fae9fedd4201e78c8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=473b269d70c2a280411de47fa...
Author: Thanasis Papoutsidakis pwnzorbot4000@gmail.com Date: Mon Jan 7 13:04:40 2019 +0200
crypt32: Add some missing CRYPT_STRING flags.
Signed-off-by: Thanasis Papoutsidakis pwnzorbot4000@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/wincrypt.h | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/include/wincrypt.h b/include/wincrypt.h index bcb67ff..5c0fb0f 100644 --- a/include/wincrypt.h +++ b/include/wincrypt.h @@ -2833,6 +2833,12 @@ 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_BASE64URI 0x0000000d + +#define CRYPT_STRING_PERCENTESCAPE 0x08000000 +#define CRYPT_STRING_HASHDATA 0x10000000 +#define CRYPT_STRING_STRICT 0x20000000 #define CRYPT_STRING_NOCRLF 0x40000000 #define CRYPT_STRING_NOCR 0x80000000