summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Vehent [:ulfr] <jvehent@users.noreply.github.com>2016-08-02 07:17:17 -0400
committerGitHub <noreply@github.com>2016-08-02 07:17:17 -0400
commitc998a5c980e691a0ca600082f2ecb2bb7dcea6b7 (patch)
tree0a98fd709fb8c11179478b29b625f72d9355df2b
parent832746e6658b7da5434a785f74172ce15fa85f77 (diff)
parent5a34e92128e9310fed0a2a9be9a273e20ac9b090 (diff)
downloadserver-side-tls-c998a5c980e691a0ca600082f2ecb2bb7dcea6b7.zip
server-side-tls-c998a5c980e691a0ca600082f2ecb2bb7dcea6b7.tar.gz
server-side-tls-c998a5c980e691a0ca600082f2ecb2bb7dcea6b7.tar.bz2
Merge pull request #152 from bndw/gh-pages
fixes typo
-rw-r--r--Server_Side_TLS.mediawiki2
1 files changed, 1 insertions, 1 deletions
diff --git a/Server_Side_TLS.mediawiki b/Server_Side_TLS.mediawiki
index 60294d8..398f2fe 100644
--- a/Server_Side_TLS.mediawiki
+++ b/Server_Side_TLS.mediawiki
@@ -376,7 +376,7 @@ Due to its experimental nature, HPKP is currently '''not''' recommended on produ
Certificates Switching is a technique by which a server provides a different X.509 certificate to a client based on specific selection criteria. This technique is used primarily to maintain backward compatibility with very old clients, such as Internet Explorer 6 on Windows XP SP2.
-On XPSP2, IE6 is only able to establish connections to servers that provide a certificate signed with sha1WithRSAEncryption. Those certificates are note issued by modern CAs anymore, and all sites have been encouraged to upgrade to SHA-256 certificates. As modern browsers gradually block connections backed by SHA-1 certificates, sites that need to maintain compatibility with XPSP2 must implement certificates switching to provide a SHA-1 cert to old clients and a SHA-256 cert to modern ones.
+On XPSP2, IE6 is only able to establish connections to servers that provide a certificate signed with sha1WithRSAEncryption. Those certificates are not issued by modern CAs anymore, and all sites have been encouraged to upgrade to SHA-256 certificates. As modern browsers gradually block connections backed by SHA-1 certificates, sites that need to maintain compatibility with XPSP2 must implement certificates switching to provide a SHA-1 cert to old clients and a SHA-256 cert to modern ones.
Certificate switching can be implemented in various ways. A simplistic approach is to select the certificate based on the protocol version (SHA-256 to TLS clients, SHA-1 to SSLv3 ones). A more sophisticated approach consists at looking inside the CLIENT HELLO for SHA-256 support in the "signature_algorithms" extension.