Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

Commit

Permalink
Update Cipher list to Mozilla Intermediate compat level and disable a…
Browse files Browse the repository at this point in the history
…nonymous diffie-hellman
  • Loading branch information
padraic committed Feb 5, 2015
1 parent 31833e7 commit c672980
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions src/Humbug/FileGetContents.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,20 +75,26 @@ protected function getTlsStreamContextDefaults($cafile)
'DHE-DSS-AES256-SHA',
'DHE-RSA-AES256-SHA',
'AES128-GCM-SHA256',
'AES256-GCM-SHA384',
'ECDHE-RSA-RC4-SHA',
'ECDHE-ECDSA-RC4-SHA',
'AES128',
'AES256',
'RC4-SHA',
'HIGH',
'AES256-GCM-SHA384',
'AES128-SHA256',
'AES256-SHA256',
'AES128-SHA',
'AES256-SHA',
'AES',
'CAMELLIA',
'DES-CBC3-SHA',
'!aNULL',
'!eNULL',
'!EXPORT',
'!DES',
'!3DES',
'!RC4',
'!MD5',
'!PSK'
'!PSK',
'!aECDH',
'!EDH-DSS-DES-CBC3-SHA',
'!EDH-RSA-DES-CBC3-SHA',
'!KRB5-DES-CBC3-SHA',
'!ADH'
));

$options = array(
Expand Down

0 comments on commit c672980

Please sign in to comment.