Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(999)

Unified Diff: android_webview/native/aw_contents_client_bridge.cc

Issue 1133863004: Prune some remnants of DSA client certificate support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test server Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/native/aw_contents_client_bridge.cc
diff --git a/android_webview/native/aw_contents_client_bridge.cc b/android_webview/native/aw_contents_client_bridge.cc
index b7de4cb20f4fbd633176da789181e0b5ed6966ec..671e9739182deecf77590146767bc881393c0dac 100644
--- a/android_webview/native/aw_contents_client_bridge.cc
+++ b/android_webview/native/aw_contents_client_bridge.cc
@@ -148,9 +148,6 @@ void AwContentsClientBridge::SelectClientCertificate(
case net::CLIENT_CERT_RSA_SIGN:
key_types.push_back("RSA");
break;
- case net::CLIENT_CERT_DSS_SIGN:
- key_types.push_back("DSA");
- break;
case net::CLIENT_CERT_ECDSA_SIGN:
key_types.push_back("ECDSA");
break;

Powered by Google App Engine
This is Rietveld 408576698