I'm developing an Android app using Client Certificate Authentication within WebView. The certificate (cert.pfx) and password are embedded in the application.
When executing Client Certificate Authentication request with ajax call in the WebView, the following function getting called :
@Override
public void onReceivedClientCertRequest(WebView view, final ClientCertRequest request) {}
As I understend I need to call :
request.proceed(PrivateKey privateKey, X509Certificate[] chain)
Any idea how to create the PrivateKey and X509Certificate objects from the embedded certificate in order to proceed with the request.
BTW, is this the correct way to implement Client Certificate Authentication on Android app ? if no, please advice.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…