--- /dev/null
+// win32ssl.cpp - Win32 SSPI (SSL) support.
+//
+// (c) 2016-2017 Xestia Software Development.
+//
+// This file is part of Xestia Calendar (originally from Xestia Address Book).
+//
+// Xestia Address Book is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by the
+// Free Software Foundation, version 3 of the license.
+//
+// Xestia Address Book is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
+
+#include "win32ssl.h"
+#include "../objects/CalDAV/CalDAV.h"
+
+CRYPTUI_VIEWCERTIFICATE_STRUCTW BuildCertificateData(void *CalDAVObjectData, HWND WindowHandle){
+
+ PCCERT_CONTEXT CertificateContext = static_cast<CalDAV*>(CalDAVObjectData)->BuildSSLCollection();
+ HCERTSTORE CertificateStore = CertificateContext->hCertStore;
+ CRYPTUI_VIEWCERTIFICATE_STRUCTW CertificateData = { 0 };
+ CertificateData.hwndParent = WindowHandle;
+ CertificateData.dwFlags = CRYPTUI_ENABLE_ADDTOSTORE | CRYPTUI_DISABLE_HTMLLINK;
+ CertificateData.pCertContext = CertificateContext;
+ CertificateData.cStores = 1;
+ CertificateData.rghStores = &CertificateStore;
+ CertificateData.szTitle = _("Certificate Information");
+ CertificateData.nStartPage = 0;
+ CertificateData.dwSize = sizeof(CertificateData);
+
+ return CertificateData;
+
+}
+
+CRYPTUI_VIEWCERTIFICATE_STRUCTW BuildCertificateData(PCCERT_CONTEXT CertificateContext, HWND WindowHandle){
+
+ HCERTSTORE CertificateStore = CertificateContext->hCertStore;
+ CRYPTUI_VIEWCERTIFICATE_STRUCTW CertificateData = { 0 };
+ CertificateData.hwndParent = WindowHandle;
+ CertificateData.dwFlags = CRYPTUI_DISABLE_HTMLLINK;
+ CertificateData.pCertContext = CertificateContext;
+ CertificateData.cStores = 1;
+ CertificateData.rghStores = &CertificateStore;
+ CertificateData.szTitle = _("Certificate Information");
+ CertificateData.nStartPage = 0;
+ CertificateData.dwSize = sizeof(CertificateData);
+
+ return CertificateData;
+
+}
\ No newline at end of file
--- /dev/null
+// win32ssl.h - Win32 SSPI (SSL) support.
+//
+// (c) 2016-2017 Xestia Software Development.
+//
+// This file is part of Xestia Calendar (originally from Xestia Address Book).
+//
+// Xestia Address Book is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by the
+// Free Software Foundation, version 3 of the license.
+//
+// Xestia Address Book is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
+
+#ifndef __COMMON_WIN32SSL_H__
+#define __COMMON_WIN32SSL_H__
+
+#pragma once
+
+#include <Windows.h>
+#include <basetsd.h>
+#include <winapifamily.h>
+#include <security.h>
+#include <schannel.h>
+#include <cryptuiapi.h>
+#include <sspi.h>
+
+CRYPTUI_VIEWCERTIFICATE_STRUCTW BuildCertificateData(void *CalDAVObjectData, HWND WindowHandle);
+CRYPTUI_VIEWCERTIFICATE_STRUCTW BuildCertificateData(PCCERT_CONTEXT CertificateContext, HWND WindowHandle);
+
+#endif
\ No newline at end of file