Commit 861ae996 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

crypt32: Increase maximum object encode length.

E. g., DigiCert CRL file is currently 35MB. Signed-off-by: 's avatarPaul Gofman <pgofman@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent dfae932d
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
#include "crypt32_private.h" #include "crypt32_private.h"
/* This is a bit arbitrary, but to set some limit: */ /* This is a bit arbitrary, but to set some limit: */
#define MAX_ENCODED_LEN 0x02000000 #define MAX_ENCODED_LEN 0x04000000
#define ASN_FLAGS_MASK 0xe0 #define ASN_FLAGS_MASK 0xe0
#define ASN_TYPE_MASK 0x1f #define ASN_TYPE_MASK 0x1f
...@@ -6411,6 +6411,7 @@ BOOL WINAPI CryptDecodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType, ...@@ -6411,6 +6411,7 @@ BOOL WINAPI CryptDecodeObjectEx(DWORD dwCertEncodingType, LPCSTR lpszStructType,
} }
if (cbEncoded > MAX_ENCODED_LEN) if (cbEncoded > MAX_ENCODED_LEN)
{ {
FIXME_(crypt)("Returning CRYPT_E_ASN1_LARGE, cbEncoded %u.\n", cbEncoded);
SetLastError(CRYPT_E_ASN1_LARGE); SetLastError(CRYPT_E_ASN1_LARGE);
return FALSE; return FALSE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment