Skip to content

Commit 4df0182

Browse files
author
Joan He
authored
Merge pull request #16 from JacobBrownAustin/MAGECLOUD-2521
MAGECLOUD-2521: Use TLS 1.2
2 parents 48ac5e3 + ca78164 commit 4df0182

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

library/Zend/Http/Client/Adapter/Proxy.php

+2-4
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,8 @@ protected function connectHandshake(
297297
// If all is good, switch socket to secure mode. We have to fall back
298298
// through the different modes
299299
$modes = array(
300-
STREAM_CRYPTO_METHOD_TLS_CLIENT,
301-
STREAM_CRYPTO_METHOD_SSLv3_CLIENT,
302-
STREAM_CRYPTO_METHOD_SSLv23_CLIENT,
303-
STREAM_CRYPTO_METHOD_SSLv2_CLIENT
300+
// TODO: Add STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT in the future when it is supported by PHP
301+
STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT
304302
);
305303

306304
$success = false;

library/Zend/Mail/Protocol/Imap.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ public function connect($host, $port = null, $ssl = false)
111111

112112
if ($ssl === 'TLS') {
113113
$result = $this->requestAndResponse('STARTTLS');
114-
$result = $result && stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT);
114+
// TODO: Add STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT in the future when it is supported by PHP
115+
$result = $result && stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT);
115116
if (!$result) {
116117
/**
117118
* @see Zend_Mail_Protocol_Exception

library/Zend/Mail/Protocol/Pop3.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ public function connect($host, $port = null, $ssl = false)
122122

123123
if ($ssl === 'TLS') {
124124
$this->request('STLS');
125-
$result = stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT);
125+
// TODO: Add STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT in the future when it is supported by PHP
126+
$result = stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT);
126127
if (!$result) {
127128
/**
128129
* @see Zend_Mail_Protocol_Exception

library/Zend/Mail/Protocol/Smtp.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ public function helo($host = '127.0.0.1')
203203
if ($this->_secure == 'tls') {
204204
$this->_send('STARTTLS');
205205
$this->_expect(220, 180);
206-
if (!stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
206+
// TODO: Add STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT in the future when it is supported by PHP
207+
if (!stream_socket_enable_crypto($this->_socket, true, STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT)) {
207208
/**
208209
* @see Zend_Mail_Protocol_Exception
209210
*/

0 commit comments

Comments
 (0)