mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 01:35:43 +00:00
[CRYPT32_WINETEST] Sync with Wine Staging 3.17. CORE-15127
This commit is contained in:
parent
997d44c915
commit
06fdb3e6ab
10 changed files with 557 additions and 669 deletions
|
@ -575,7 +575,7 @@ static CRYPT_DATA_BLOB b1[] = {
|
|||
{ sizeof(u2), u2 },
|
||||
{ sizeof(u2), u2 },
|
||||
};
|
||||
static const struct update_accum a1 = { sizeof(b1) / sizeof(b1[0]), b1 };
|
||||
static const struct update_accum a1 = { ARRAY_SIZE(b1), b1 };
|
||||
/* The updates of a definite-length encoded message */
|
||||
static BYTE u3[] = { 0x30,0x13,0x06,0x09,0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,
|
||||
0x07,0x01,0xa0,0x06,0x04,0x04 };
|
||||
|
@ -583,7 +583,7 @@ static CRYPT_DATA_BLOB b2[] = {
|
|||
{ sizeof(u3), u3 },
|
||||
{ sizeof(u2), u2 },
|
||||
};
|
||||
static const struct update_accum a2 = { sizeof(b2) / sizeof(b2[0]), b2 };
|
||||
static const struct update_accum a2 = { ARRAY_SIZE(b2), b2 };
|
||||
/* The updates of an indefinite-length encoded message */
|
||||
static BYTE u4[] = { 0x30,0x80,0x06,0x09,0x2a,0x86,0x48,0x86,0xf7,0x0d,0x01,
|
||||
0x07,0x01,0xa0,0x80,0x24,0x80 };
|
||||
|
@ -597,7 +597,7 @@ static CRYPT_DATA_BLOB b3[] = {
|
|||
{ sizeof(u2), u2 },
|
||||
{ sizeof(u6), u6 },
|
||||
};
|
||||
static const struct update_accum a3 = { sizeof(b3) / sizeof(b3[0]), b3 };
|
||||
static const struct update_accum a3 = { ARRAY_SIZE(b3), b3 };
|
||||
|
||||
static void check_updates(LPCSTR header, const struct update_accum *expected,
|
||||
const struct update_accum *got)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue