]> git.p6c8.net - policy-templates.git/commitdiff
Update README-new.md
authorMichael Kaply <345868+mkaply@users.noreply.github.com>
Mon, 3 Jun 2019 21:47:02 +0000 (16:47 -0500)
committerGitHub <noreply@github.com>
Mon, 3 Jun 2019 21:47:02 +0000 (16:47 -0500)
README-new.md

index 5bede5a63a7e51ff150bdfff08fdc97af749b8c9..43ddef585ad6724bfb9387e28e30b977e139c714 100644 (file)
@@ -676,22 +676,59 @@ This policy allows you to add PKCS #11 Modules
   }
 }
 ```
-### SSLVersionMin
-This policy allows you to set the minimum TLS version.
+### SSLVersionMax
+A String value that sets and locks the maximum version of TLS
+
+**Compatibility:** Firefox 67, Firefox ESR 60.7\
+**CCK2 Equivalent:** N/A
+**Preferences Affected:** `security.tls.version.max`
+
+#### Windows
+| Type | Registry Location |
+| ---- | ----------------- |
+| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMax` |
+
+#### macOS
+```
+<dict>
+  <key>SSLVersionMax</key>
+  <string>tls1 | tls1.1 | tls1.2 | tls1.3<string>
+</dict>
+```
+
+#### JSON
 ```
 {
   "policies": {
-    "SSSLVersionMin": ["tls1", "tls1.1", "tls1.2",. "tls1.3"]
+    "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
   }
 }
+```
+### SSLVersionMin
+A String value that sets and locks the minimum version of TLS
+
+**Compatibility:** Firefox 67, Firefox ESR 60.7\
+**CCK2 Equivalent:** N/A
+**Preferences Affected:** `security.tls.version.min`
+
+#### Windows
+| Type | Registry Location |
+| ---- | ----------------- |
+| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMin` |
 
+#### macOS
 ```
-### SSLVersionMax
-This policy allows you to set the maximum TLS version.
+<dict>
+  <key>SSLVersionMin</key>
+  <string>tls1 | tls1.1 | tls1.2 | tls1.3<string>
+</dict>
+```
+
+#### JSON
 ```
 {
   "policies": {
-    "SSSLVersionMax": ["tls1", "tls1.1", "tls1.2",. "tls1.3"]
+    "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
   }
 }
 ```

patrick-canterino.de