- tooBig[] = { 0x02, 0x84, 0x0f, 0xff, 0xff, 0xfc };
- tooBig[] = { 0x02, 0x84, 0xff, 0xff, 0xff, 0xfc };
| encode.c:313: Test failed: Expected CRYPT_E_ASN1_LARGE, got 80093106
That's CRYPT_E_ASN1_MEMORY, meaning out of memory. Weird, it must try to allocate this much?
Sorry, I have no opinion of this case. May my box be really out of mem?
Since the test tried to push it either 0x0ffffffc (268MiB) or 0xfffffffc (4.29GiB), no wonder it's out of memory. Note that you stripped out important context in your quoting, which I duly restored :)
Cheers, Kuba