Commit 555e85a2 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Implement getting signer info from a decoded signed message.

parent 5900ab14
...@@ -1988,7 +1988,6 @@ static void test_decode_msg_get_param(void) ...@@ -1988,7 +1988,6 @@ static void test_decode_msg_get_param(void)
ok(value == 1, "Expected 1 signer, got %d\n", value); ok(value == 1, "Expected 1 signer, got %d\n", value);
size = 0; size = 0;
ret = CryptMsgGetParam(msg, CMSG_SIGNER_INFO_PARAM, 0, NULL, &size); ret = CryptMsgGetParam(msg, CMSG_SIGNER_INFO_PARAM, 0, NULL, &size);
todo_wine
ok(ret, "CryptMsgGetParam failed: %08x\n", GetLastError()); ok(ret, "CryptMsgGetParam failed: %08x\n", GetLastError());
if (ret) if (ret)
buf = CryptMemAlloc(size); buf = CryptMemAlloc(size);
......
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