summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/ClientCertRequestHandler.java
Commit message (Collapse)AuthorAgeFilesLines
* Delete the old WebView.Torne (Richard Coles)2013-10-151-119/+0
| | | | | | | | | Delete all the Java classes used only by the old WebView implementation, and also sections of common classes that were only needed for the old WebView. Bug: 10427705 Change-Id: I02549a71104b35d86d99058c71f43e054730ec7d
* Track change to JSSE providerKenny Root2013-04-291-3/+3
| | | | Change-Id: I35e824e47ad758ab6408e91e2ba5dcda053a82f5
* Tracking libcore change to use longs instead of ints to store pointers in ↵Brian Carlstrom2013-03-011-1/+1
| | | | | | OpenSSL binding Change-Id: Ieba5705f4faa7cea619cf509db3ef081fda570d5
* Track libcore changes for OpenSSLKeyKenny Root2013-01-221-9/+6
| | | | Change-Id: I39f60c34daa9ccc633efb02988ea238a84e6bbf1
* Use private key context when necessarySelim Gurun2012-05-041-12/+39
| | | | | | | | | | | Bug: 6249185 Due to recent changes to keystore, we cannot rely on encoded key format anymore. Rather we receive the key context (a pointer to private key really) and pass it to native openssl. We also keep the original logic however. Change-Id: Iefe9f0336dd5f47eec4222fcb6fec58807e7cac0
* Move ssl callbacks to webcore thread.Selim Gurun2011-12-131-9/+26
| | | | | | | | | | | | | Bug: 4586251 Original CL was for ics-mr1. We decided it should be in master instead. Original CL https://android-git.corp.google.com/g/154083 Current ssl cert logic makes callbacks to webkit from the UI thread. This is not right. Move the callbacks to proper thread. Change-Id: Ie3de7dbaed7780dbb6cf537ca1d29686d867b784
* Implement android.webkit.BrowserFrame.requestClientCertBrian Carlstrom2011-06-091-0/+78
Following the example of reportSslCertError, implement requestClientCert ERROR CASE CLIENT CERT CASE <... From external/webkit ...> <... From external/webkit ...> android.webkit.BrowserFrame.reportSslCertError android.webkit.BrowserFrame.requestClientCert CallbackProxy.onReceivedSslError CallbackProxy.onReceivedClientCertRequest WebViewClient.onReceivedSslError WebViewClient.onReceivedClientCertRequest <... See packages/apps/Browser ...> <... See packages/apps/Browser ...> SslErrorHandler.proceed (with SslCertLookupTable) ClientCertRequestHandler.proceed (with SslClientCertLookupTable) android.webkit.BrowserFrame.nativeSslCertErrorProceed android.webkit.BrowserFrame.nativeSslClientCert <... To external/webkit ...> <... To external/webkit ...> Change-Id: I2ba6007ad9b2ee520a0a6b17f3a767679b1664de