Skip to content

Commit f494b85

Browse files
committed
Clean-ups
1 parent 433dc42 commit f494b85

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

articles/azure-cache-for-redis/cache-deprecate-tls-10-11.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ ms.author: yegu
2222

2323
There is an industry-wide push towards using TLS 1.2 or higher exclusively. TLS Versions 1.0 and 1.1 are known to be susceptible to attacks such as BEAST and POODLE and have other Common Vulnerabilities and Exposures (CVE) weaknesses. They also do not support the modern encryption methods and cipher suites recommended by PCI compliance standards. This [TLS security blog](https://www.acunetix.com/blog/articles/tls-vulnerabilities-attacks-final-part/) explains some of these vulnerabilities in more details.
2424

25-
While none of these pose immediate problems, you should consider moving away from using TLS 1.0 and 1.1 as quickly as possible. Azure Cache for Redis will stop supporting TLS versions 1.0 and 1.1 starting on (date), after which your application will be required to use at least TLS 1.2 in order to communicate with your cache. This article provides general guidance on how to detect and remove these dependencies from your application.
25+
While none of these pose immediate problems, you should consider moving away from using TLS 1.0 and 1.1 as early as possible. Azure Cache for Redis will stop supporting these TLS versions starting on (date). Your application will be required to use at least TLS 1.2 in order to communicate with your cache after this date.
26+
27+
This article provides general guidance on how to detect and remove these dependencies from your application.
2628

2729
## Check if your application is already compliant
2830

@@ -73,13 +75,13 @@ Predis on PHP 7 won't work since the latter only supports TLS 1.0. On PHP 7.2.1
7375

7476
``` PHP
7577
$redis=newPredis\Client([
76-
'scheme'=>'tls',
77-
'host'=>'host',
78-
'port'=>6380,
79-
'password'=>'password',
80-
'ssl'=>[
81-
'crypto_type'=>STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT,
82-
],
78+
'scheme'=>'tls',
79+
'host'=>'host',
80+
'port'=>6380,
81+
'password'=>'password',
82+
'ssl'=>[
83+
'crypto_type'=>STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT,
84+
],
8385
]);
8486
```
8587

0 commit comments

Comments
 (0)