From: adachan Date: Tue, 28 Aug 2007 17:20:49 +0000 (+0000) Subject: Added SPI to fetch SSL certificate information. X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=7642a9d8a72a307a4101883e2b3fbaac5d1f9889 Added SPI to fetch SSL certificate information. Updated libraries. Reviewed by Adam. * win/include/WebKitSystemInterface/WebKitSystemInterface.h: * win/lib/WebKitSystemInterface.lib: * win/lib/WebKitSystemInterface_debug.lib: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@25271 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/WebKitLibraries/ChangeLog b/WebKitLibraries/ChangeLog index e26541e39253..24a74ff5fc12 100644 --- a/WebKitLibraries/ChangeLog +++ b/WebKitLibraries/ChangeLog @@ -1,3 +1,14 @@ +2007-08-28 Ada Chan + + Added SPI to fetch SSL certificate information. + Updated libraries. + + Reviewed by Adam. + + * win/include/WebKitSystemInterface/WebKitSystemInterface.h: + * win/lib/WebKitSystemInterface.lib: + * win/lib/WebKitSystemInterface_debug.lib: + 2007-07-23 Ada Chan Reviewed by Steve. diff --git a/WebKitLibraries/win/include/WebKitSystemInterface/WebKitSystemInterface.h b/WebKitLibraries/win/include/WebKitSystemInterface/WebKitSystemInterface.h index 73509299c8d4..2dea961d869c 100644 --- a/WebKitLibraries/win/include/WebKitSystemInterface/WebKitSystemInterface.h +++ b/WebKitLibraries/win/include/WebKitSystemInterface/WebKitSystemInterface.h @@ -35,6 +35,7 @@ typedef unsigned short CGFontIndex; typedef struct CGFont* CGFontRef; typedef CGFontIndex CGGlyph; typedef wchar_t UChar; +typedef struct _CFURLResponse* CFURLResponseRef; void wkSetFontSmoothingLevel(int type); int wkGetFontSmoothingLevel(); @@ -46,4 +47,7 @@ void wkSetUpFontCache(size_t s); void wkDrawFocusRing(CGContextRef, CGColorRef, float radius); +CFDictionaryRef wkGetSSLCertificateInfo(CFURLResponseRef); +void* wkGetSSLPeerCertificateData(CFDictionaryRef); + #endif diff --git a/WebKitLibraries/win/lib/WebKitSystemInterface.lib b/WebKitLibraries/win/lib/WebKitSystemInterface.lib index 39a04316bcf6..ef85d9060508 100644 Binary files a/WebKitLibraries/win/lib/WebKitSystemInterface.lib and b/WebKitLibraries/win/lib/WebKitSystemInterface.lib differ diff --git a/WebKitLibraries/win/lib/WebKitSystemInterface_debug.lib b/WebKitLibraries/win/lib/WebKitSystemInterface_debug.lib index 4c4cdbb748ff..45a4b38093f9 100644 Binary files a/WebKitLibraries/win/lib/WebKitSystemInterface_debug.lib and b/WebKitLibraries/win/lib/WebKitSystemInterface_debug.lib differ