RESOLVED FIXED 145886
Make -[WKWebView _certificateChain] public.
https://bugs.webkit.org/show_bug.cgi?id=145886
Summary Make -[WKWebView _certificateChain] public.
Eugene But
Reported 2015-06-11 11:09:29 PDT
Making _certificateChain API public will simplify implementation of security UI (https lock) for web browsers. In WebKit nightly build webView:didReceiveAuthenticationChallenge:completionHandler: provides certs chain. However it is not called on every navigation. It means that if app needs to know the certs of current page it has to maintain persistent cache: host-name: cert-chain. The certs are already cached by WebKit, so storing this cache twice is additional overhead. rdar://21342465
Attachments
Add a certificateChain property to WKWebView (17.12 KB, patch)
2015-06-20 16:16 PDT, mitz
sam: review+
Add a certificateChain property to WKWebView (16.71 KB, patch)
2015-06-21 09:46 PDT, mitz
sam: review+
Eugene But
Comment 1 2015-06-12 13:05:30 PDT
webView:didReceiveAuthenticationChallenge:completionHandler: does not provide information about the frame which loads a resource. Hence caching certs, so they can be reused later for lock icon is not viable. Without certificateChain public API correct implementation of security lock is not possible.
mitz
Comment 2 2015-06-20 16:16:58 PDT
Created attachment 255301 [details] Add a certificateChain property to WKWebView
mitz
Comment 3 2015-06-21 09:46:55 PDT
Created attachment 255327 [details] Add a certificateChain property to WKWebView Revised to make the property non-nullable
mitz
Comment 4 2015-06-23 09:47:21 PDT
Note You need to log in before you can comment on or make changes to this bug.