More codestring -> codebytes.

This commit is contained in:
Georg Brandl 2009-06-04 09:42:55 +00:00
parent 3ed0deb9af
commit 706824f19f
10 changed files with 16 additions and 15 deletions

View file

@ -413,7 +413,7 @@ def PEM_cert_to_DER_cert(pem_cert_string):
raise ValueError("Invalid PEM encoding; must end with %s"
% PEM_FOOTER)
d = pem_cert_string.strip()[len(PEM_HEADER):-len(PEM_FOOTER)]
return base64.decodestring(d.encode('ASCII', 'strict'))
return base64.decodebytes(d.encode('ASCII', 'strict'))
def get_server_certificate(addr, ssl_version=PROTOCOL_SSLv3, ca_certs=None):
"""Retrieve the certificate from the server at the specified address,