I am not able to reproduce using zc.ssl 1.2:
>>> import zc.ssl
>>>
>>> conn = zc.ssl.HTTPSConnection("test.authorize.net")
>>> conn.connect()
>>> conn.request("GET", "/")
>>> conn.getresponse().status
200
>>> conn = zc.ssl.HTTPSConnection("secure.authorize.net")
>>> conn.connect()
>>> conn.reque
It's that the current certs.pem doesn't contain the updated chain for
test.authorize.net/secure.authorize.net etc. Using the current will throw
an ssl error.
I've fixed my local instance of this using the local system certificate
chain.
For the future i'll let the developers know that zc.ssl is
On Fri, Jan 25, 2013 at 12:00 PM, Jim Fulton wrote:
> On Fri, Jan 25, 2013 at 11:22 AM, Senner, Talin
> wrote:
>> Would someone that has access be able to update zc.ssl and release a new
>> version:
>>
>> http://svn.zope.org/zc.ssl/trunk/src/zc/ssl/certs.pem
>>
>> with a new version of ca root c
On Fri, Jan 25, 2013 at 11:22 AM, Senner, Talin wrote:
> Would someone that has access be able to update zc.ssl and release a new
> version:
>
> http://svn.zope.org/zc.ssl/trunk/src/zc/ssl/certs.pem
>
> with a new version of ca root certificates (something say from a latest
> linux release from /e
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 01/25/2013 11:22 AM, Senner, Talin wrote:
> Would someone that has access be able to update zc.ssl and release a
> new version:
>
> http://svn.zope.org/zc.ssl/trunk/src/zc/ssl/certs.pem
>
> with a new version of ca root certificates (something say
Would someone that has access be able to update zc.ssl and release a new
version:
http://svn.zope.org/zc.ssl/trunk/src/zc/ssl/certs.pem
with a new version of ca root certificates (something say from a latest
linux release from /etc/ssl ). The current cert chain is over 5 years old.
Thank you!