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

Unified Diff: chrome/app/generated_resources.grd

Issue 667183002: Add --ssl-version-min and --ssl-version-fallback-min to chrome://flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Joao's comments. 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:
Download patch
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/generated_resources.grd
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd
index 4ff2e6622dfb963a6c63dce89140b4b2e823d09c..49a7171d98b2b35b13f49d66313574823b59e73d 100644
--- a/chrome/app/generated_resources.grd
+++ b/chrome/app/generated_resources.grd
@@ -9626,6 +9626,45 @@ and incorrect credentials. Either an attacker is trying to pretend to be <ph nam
You cannot visit <ph name="SITE">$1<ex>google.com</ex></ph> right now because the website sent scrambled credentials that Chrome cannot process. Network errors and attacks are usually temporary, so this page will probably work later.
</message>
+ <message name="IDS_FLAGS_SSL_VERSION_MIN_DESCRIPTION" desc="Description for the flag to set the minimal SSL/TLS version.">
+ Minimal SSL/TLS version required. Secure connection will be refused if
+ the server offers lesser protection than this version.
+
+ Note that the SSL/TLS versions are listed in increasing order of security,
+ i.e. SSL 3 is least secure and TLS 1.2 is most secure.
+ </message>
+ <message name="IDS_FLAGS_SSL_VERSION_MIN_NAME" desc="Name of the flag to set the minimal SSL/TLS version.">
+ Minimal SSL version.
+ </message>
+
+ <message name="IDS_FLAGS_SSL_VERSION_FALLBACK_MIN_DESCRIPTION" desc="Description for the flag to set the minimal SSL/TLS version to fallback to.">
+ When an SSL/TLS handshake fails, the browser will retry the connection
+ with a lesser version of SSL/TLS in order to work around bugs in HTTPS
+ servers. This setting configures the version at which this fallback
+ process will stop. Independent of this setting, the browser will never
+ attempt a connection with lesser security than specified at "Minimal SSL
+ version".
+
+ Note that the SSL/TLS versions are listed in increasing order of security,
+ i.e. SSL 3 is least secure and TLS 1.2 is most secure.
+ </message>
+ <message name="IDS_FLAGS_SSL_VERSION_FALLBACK_MIN_NAME" desc="Name of the flag to set the minimal SSL/TLS version to fallback to.">
+ Minimum SSL version to fallback to.
+ </message>
+
+ <message name="IDS_SSL_VERSION_MIN_SSL3" desc="ssl3">
+ ssl3
+ </message>
+ <message name="IDS_SSL_VERSION_MIN_TLS1" desc="tls1">
+ tls1
+ </message>
+ <message name="IDS_SSL_VERSION_MIN_TLS1_1" desc="tls1.1">
+ tls1.1
+ </message>
+ <message name="IDS_SSL_VERSION_MIN_TLS1_2" desc="tls1.2">
+ tls1.2
+ </message>
+
<!-- Misc strings for SSL UI -->
<message name="IDS_UNSAFE_FRAME_MESSAGE" desc="The text displayed in the content that is subsituted to an unsafe frame.">
This frame was blocked because it contains some insecure content.
« no previous file with comments | « no previous file | chrome/browser/about_flags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698