wine/dlls/crypt32 cert.c crypt32.spec

Alexandre Julliard julliard at wine.codeweavers.com
Wed Nov 30 06:04:12 CST 2005


ChangeSet ID:	21570
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at winehq.org	2005/11/30 06:04:12

Modified files:
	dlls/crypt32   : cert.c crypt32.spec 

Log message:
	Stefan Leichter <Stefan.Leichter at camLine.com>
	Added stub for CryptVerifyMessageSignature.

Patch: http://cvs.winehq.org/patch.py?id=21570

Old revision  New revision  Changes     Path
 1.23          1.24          +10 -0      wine/dlls/crypt32/cert.c
 1.33          1.34          +1 -1       wine/dlls/crypt32/crypt32.spec

Index: wine/dlls/crypt32/cert.c
diff -u -p wine/dlls/crypt32/cert.c:1.23 wine/dlls/crypt32/cert.c:1.24
--- wine/dlls/crypt32/cert.c:1.23	30 Nov 2005 12: 4:12 -0000
+++ wine/dlls/crypt32/cert.c	30 Nov 2005 12: 4:12 -0000
@@ -3297,3 +3297,13 @@ BOOL WINAPI CryptUnregisterDefaultOIDFun
     FIXME("stub: %lx %s %s\n", dwEncodingType, debugstr_a(pszFuncName), debugstr_w(pwszDll));
     return FALSE;
 }
+
+BOOL WINAPI CryptVerifyMessageSignature(/*PCRYPT_VERIFY_MESSAGE_PARA*/ void* pVerifyPara,
+          DWORD dwSignerIndex, const BYTE* pbSignedBlob, DWORD cbSignedBlob,
+          BYTE* pbDecoded, DWORD* pcbDecoded, PCCERT_CONTEXT* ppSignerCert)
+{
+    FIXME("stub: %p, %ld, %p, %ld, %p, %p, %p\n",
+        pVerifyPara, dwSignerIndex, pbSignedBlob, cbSignedBlob,
+        pbDecoded, pcbDecoded, ppSignerCert);
+    return FALSE;
+}
Index: wine/dlls/crypt32/crypt32.spec
diff -u -p wine/dlls/crypt32/crypt32.spec:1.33 wine/dlls/crypt32/crypt32.spec:1.34
--- wine/dlls/crypt32/crypt32.spec:1.33	30 Nov 2005 12: 4:12 -0000
+++ wine/dlls/crypt32/crypt32.spec	30 Nov 2005 12: 4:12 -0000
@@ -162,7 +162,7 @@
 @ stub CryptVerifyDetachedMessageHash
 @ stub CryptVerifyDetachedMessageSignature
 @ stub CryptVerifyMessageHash
-@ stub CryptVerifyMessageSignature
+@ stdcall CryptVerifyMessageSignature(ptr long ptr long ptr ptr ptr)
 @ stub CryptVerifyMessageSignatureWithKey
 @ stub CryptVerifySignatureU
 @ stdcall I_CryptAllocTls()



More information about the wine-cvs mailing list