Paul Vriens : wintrust: Register DRIVER_ACTION_VERIFY.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Sep 7 07:12:12 CDT 2006


Module: wine
Branch: master
Commit: 073d4eca9e498932b5535a0e2d77b448d9af9817
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=073d4eca9e498932b5535a0e2d77b448d9af9817

Author: Paul Vriens <Paul.Vriens at xs4all.nl>
Date:   Tue Sep  5 20:38:19 2006 +0200

wintrust: Register DRIVER_ACTION_VERIFY.

---

 dlls/wintrust/register.c |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 insertions(+), 0 deletions(-)

diff --git a/dlls/wintrust/register.c b/dlls/wintrust/register.c
index aeb2897..c7c687a 100644
--- a/dlls/wintrust/register.c
+++ b/dlls/wintrust/register.c
@@ -53,6 +53,10 @@ static CRYPT_TRUST_REG_ENTRY HTTPSFinalP
 static CRYPT_TRUST_REG_ENTRY OfficeInitializePolicy;
 static CRYPT_TRUST_REG_ENTRY OfficeCleanupPolicy;
 
+static CRYPT_TRUST_REG_ENTRY DriverInitializePolicy;
+static CRYPT_TRUST_REG_ENTRY DriverFinalPolicy;
+static CRYPT_TRUST_REG_ENTRY DriverCleanupPolicy;
+
 static const WCHAR Trust[]            = {'S','o','f','t','w','a','r','e','\\',
                                          'M','i','c','r','o','s','o','f','t','\\',
                                          'C','r','y','p','t','o','g','r','a','p','h','y','\\',
@@ -99,6 +103,9 @@ #define WINTRUST_INITREGENTRY( action, d
     WINTRUST_INITREGENTRY(HTTPSFinalProv, SP_POLICY_PROVIDER_DLL_NAME, HTTPS_FINALPOLICY_FUNCTION)
     WINTRUST_INITREGENTRY(OfficeInitializePolicy, OFFICE_POLICY_PROVIDER_DLL_NAME, OFFICE_INITPROV_FUNCTION)
     WINTRUST_INITREGENTRY(OfficeCleanupPolicy, OFFICE_POLICY_PROVIDER_DLL_NAME, OFFICE_CLEANUPPOLICY_FUNCTION)
+    WINTRUST_INITREGENTRY(DriverInitializePolicy, SP_POLICY_PROVIDER_DLL_NAME, DRIVER_INITPROV_FUNCTION)
+    WINTRUST_INITREGENTRY(DriverFinalPolicy, SP_POLICY_PROVIDER_DLL_NAME, DRIVER_FINALPOLPROV_FUNCTION)
+    WINTRUST_INITREGENTRY(DriverCleanupPolicy, SP_POLICY_PROVIDER_DLL_NAME, DRIVER_CLEANUPPOLICY_FUNCTION)
 
 #undef WINTRUST_INITREGENTRY
 }
@@ -128,6 +135,9 @@ #define WINTRUST_FREEREGENTRY( action ) 
     WINTRUST_FREEREGENTRY(HTTPSFinalProv);
     WINTRUST_FREEREGENTRY(OfficeInitializePolicy);
     WINTRUST_FREEREGENTRY(OfficeCleanupPolicy);
+    WINTRUST_FREEREGENTRY(DriverInitializePolicy);
+    WINTRUST_FREEREGENTRY(DriverFinalPolicy);
+    WINTRUST_FREEREGENTRY(DriverCleanupPolicy);
 
 #undef WINTRUST_FREEREGENTRY
 }
@@ -623,6 +633,35 @@ static void WINTRUST_RegisterOfficeSignV
     WINTRUST_WriteProviderToReg(GuidString, Cleanup       , OfficeCleanupPolicy);
 }
 
+/***************************************************************************
+ *              WINTRUST_RegisterDriverVerify
+ *
+ * Register DRIVER_ACTION_VERIFY actions and usages.
+ *
+ * NOTES
+ *   DRIVER_ACTION_VERIFY ({F750E6C3-38EE-11D1-85E5-00C04FC295EE})
+ *   is defined in softpub.h
+ *   We don't care about failures (see comments in DllRegisterServer)
+ */
+static void WINTRUST_RegisterDriverVerify(void)
+{
+    static const GUID ProvGUID = DRIVER_ACTION_VERIFY;
+    WCHAR GuidString[39];
+
+    WINTRUST_Guid2Wstr(&ProvGUID , GuidString);
+
+    TRACE("Going to register DRIVER_ACTION_VERIFY : %s\n", wine_dbgstr_w(GuidString));
+
+    /* HKLM\Software\Microsoft\Cryptography\Trust\Provider\*\{F750E6C3-38EE-11D1-85E5-00C04FC295EE} */
+    WINTRUST_WriteProviderToReg(GuidString, Initialization, DriverInitializePolicy);
+    WINTRUST_WriteProviderToReg(GuidString, Message       , SoftpubMessage);
+    WINTRUST_WriteProviderToReg(GuidString, Signature     , SoftpubSignature);
+    WINTRUST_WriteProviderToReg(GuidString, Certificate   , SoftpubCertficate);
+    WINTRUST_WriteProviderToReg(GuidString, CertCheck     , SoftpubCertCheck);
+    WINTRUST_WriteProviderToReg(GuidString, FinalPolicy   , DriverFinalPolicy);
+    WINTRUST_WriteProviderToReg(GuidString, Cleanup       , DriverCleanupPolicy);
+}
+
 /***********************************************************************
  *              DllRegisterServer (WINTRUST.@)
  */
@@ -667,6 +706,7 @@ HRESULT WINAPI DllRegisterServer(void)
     WINTRUST_RegisterTrustProviderTest();
     WINTRUST_RegisterHttpsProv();
     WINTRUST_RegisterOfficeSignVerify();
+    WINTRUST_RegisterDriverVerify();
 
     /* Free the registry structures */
     WINTRUST_FreeRegStructs();




More information about the wine-cvs mailing list