Skip to content

Commit

Permalink
Don't test sslv3
Browse files Browse the repository at this point in the history
Generally people are ceasing to support sslv3 as it has a number of
weaknesses. Lets not test against old busted ciphers.
  • Loading branch information
markstory committed Jun 25, 2016
1 parent 64ca29f commit 84f357c
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/TestCase/Network/SocketTest.php
Expand Up @@ -349,12 +349,6 @@ public function testEnableCryptoBadMode()
public function testEnableCrypto()
{
$this->skipIf(!function_exists('stream_socket_enable_crypto'), 'Broken on HHVM');
// testing on ssl server
$this->_connectSocketToSslTls();
$this->assertTrue($this->Socket->enableCrypto('sslv3', 'client'));
$this->Socket->disconnect();

// testing on tls server
$this->_connectSocketToSslTls();
$this->assertTrue($this->Socket->enableCrypto('tls', 'client'));
$this->Socket->disconnect();
Expand Down

0 comments on commit 84f357c

Please sign in to comment.