summaryrefslogtreecommitdiff
path: root/docker/ssladapter
Commit message (Collapse)AuthorAgeFilesLines
* Ensure assert_hostname is set on the pool connectionStephen Moore2015-11-081-0/+13
| | | | | | | | If you have assert_hostname turned off and are using a proxy on your computer then assert_hostname wasn't being properly set on the pool connection and it was failing to connect to docker Signed-off-by: Stephen Moore <stephen@delfick.com>
* Add assert_fingerprint option.dlorenc2015-03-191-1/+4
| | | | Signed-off-by: dlorenc <lorenc.d@gmail.com>
* urllib3/requests issuesJoffrey F2015-01-091-3/+3
|
* Prioritize system-installed urllib3 over requests vendored urllib3.Joffrey F2015-01-081-2/+2
|
* Fix typoJoffrey F2014-10-301-1/+1
|
* Require highest level of client-supported SSL/TLS cryptoEric Windisch2014-10-291-0/+11
| | | | | | | | | | | | Up to TLS 1.2, support the highest locally supported crypto protocol. This eliminates the previous default of PROTOCOL_SSLv23, replacing it with what should be TLSv1 for Python 2.7 and TLSv1.2 for newer versions of Python 3. Developers using docker-py may still specify the ssl_version to override the default. Signed-off-by: Eric Windisch <eric@windisch.us>
* Enable the overriding of `assert_hostname` on TLSConfigAanand Prasad2014-10-141-2/+4
| | | | Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
* Fix typos in ssladapter.pyAanand Prasad2014-10-141-3/+9
| | | | | | | - Check that `urllib_ver` is not None, instead of `urllib3` - Do version comparison only if `urllib_ver` is *not* "dev" Fixes #325. Original work by @sidprak.
* Simplified init_poolmanagerJoffrey F2014-09-081-10/+10
|
* Fix some urllib3 import issuesJoffrey F2014-07-091-4/+7
|
* fix ssl_version exception when urllib3 version <= 1.5李超2014-07-071-4/+12
|
* * Merge branch 'tls' of github.com:momer/docker-py into momer-tlsJoffrey F2014-06-232-3/+2
| | | | | | | * Exported TLS configuration in tls.TLSConfig * Merged exceptions packagee into pre-existing errors module * Flake8 fixes * Bug fixes
* Expanding on @denibertovic initial additions, we now have full support for ↵Mo Omer2014-05-132-0/+24
SSL in docker-py. Including the ability to specify the expected SSL Version for issues with OpenSSL sslv3/tls1 recognition issues. Added an exception class for repetitive reminders to look at the CLI doc on docker.io.