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

Unified Diff: chrome/common/extensions/api/platform_keys.idl

Issue 1141253003: chrome.platformKeys: Add filtering by certificate types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed pneubeck's comments 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: chrome/common/extensions/api/platform_keys.idl
diff --git a/chrome/common/extensions/api/platform_keys.idl b/chrome/common/extensions/api/platform_keys.idl
index 9c97ee52eb2caf3f69e3b53f4f03f7e3b2c20939..862755638d39de3c6302b19d300a757de4c793e7 100644
--- a/chrome/common/extensions/api/platform_keys.idl
+++ b/chrome/common/extensions/api/platform_keys.idl
@@ -23,7 +23,6 @@ namespace platformKeys {
enum ClientCertificateType {
rsaSign,
- dssSign,
ecdsaSign
};
@@ -31,7 +30,9 @@ namespace platformKeys {
// See http://tools.ietf.org/html/rfc4346#section-7.4.4 .
dictionary ClientCertificateRequest {
// This field is a list of the types of certificates requested, sorted in
- // order of the server's preference.
+ // order of the server's preference. Only certificates of a type contained
+ // in this list will be retrieved. If <code>certificateTypes</code> is the
+ // empty list, however, certificates of any type will be returned.
ClientCertificateType[] certificateTypes;
// List of distinguished names of certificate authorities allowed by the

Powered by Google App Engine
This is Rietveld 408576698