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

Unified Diff: components/policy/resources/policy_templates.json

Issue 649373002: Provide enterprise policy option to set the minimum SSL version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: components/policy/resources/policy_templates.json
diff --git a/components/policy/resources/policy_templates.json b/components/policy/resources/policy_templates.json
index f65ef8c64ec77500cc8197aa4bb4304ba6bb3085..eead7c745dccb3746933418559c3a7ff71ef6bb9 100644
--- a/components/policy/resources/policy_templates.json
+++ b/components/policy/resources/policy_templates.json
@@ -123,7 +123,7 @@
# persistent IDs for all fields (but not for groups!) are needed. These are
# specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
# because doing so would break the deployed wire format!
-# For your editing convenience: highest ID currently used: 278
+# For your editing convenience: highest ID currently used: 279
#
# Placeholders:
# The following placeholder strings are automatically substituted:
@@ -6791,6 +6791,52 @@
If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not allow creation of new profiles from the profile manager.''',
},
+ {
+ 'name': 'SSLVersionMin',
Andrew T Wilson (Slow) 2014/10/14 08:32:53 I wonder if instead of a blanket policy, if instea
agl 2014/10/14 17:39:51 The message is very much that we're moving on from
+ 'type': 'string-enum',
+ 'schema': {
+ 'type': 'string',
+ 'enum': [
+ 'ssl3',
+ 'tls1',
+ 'tls1.1',
+ 'tls1.2',
+ ],
+ },
+ 'items': [
+ {
+ 'name': 'SSLv3',
+ 'value': 'ssl3',
+ 'caption': 'SSL 3.0',
+ },
+ {
+ 'name': 'TLSv1',
+ 'value': 'tls1',
+ 'caption': 'TLS 1.0',
+ },
+ {
+ 'name': 'TLSv1.1',
+ 'value': 'tls1.1',
+ 'caption': 'TLS 1.1',
+ },
+ {
+ 'name': 'TLSv1.2',
+ 'value': 'tls1.2',
+ 'caption': 'TLS 1.2',
+ },
+ ],
+ 'supported_on': ['chrome.*:39-', 'chrome_os:39-', 'android:39-'],
Andrew T Wilson (Slow) 2014/10/14 08:32:53 We use our own net stack on ios - is this policy s
Joao da Silva 2014/10/14 08:40:10 Is this going to be merged back to 39? Current tru
agl 2014/10/14 17:39:51 We are going to watch and listen to requests once
agl 2014/10/14 17:39:51 Thanks -- I just omitted ios. Done.
+ 'features': {
+ 'dynamic_refresh': True,
+ 'per_profile': False,
+ },
+ 'example_value': 'ssl3',
+ 'id': 279,
+ 'caption': '''Minimum SSL version enabled''',
+ 'desc': '''If this policy is not configured then <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will use a default minimum version, which is SSLv3 in Chrome 39 but may be TLS 1.0 in Chrome 40.
Andrew T Wilson (Slow) 2014/10/14 08:32:53 The idea is that ssl3 < tls1 for the purposes of t
agl 2014/10/14 17:39:51 That's good point. It is something that people hav
+
+ Otherwise it may be set to one of the following values: "sslv3", "tls1", "tls1.1" or "tls1.2". When set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will not use SSL/TLS versions less than the specified version. An unrecognized value will be ignored.''',
+ },
],
'messages': {
# Messages that are not associated to any policies.

Powered by Google App Engine
This is Rietveld 408576698