Fix authentication with Python 3 (see #70)

This commit is contained in:
Guillaume Ayoub 2013-10-18 14:06:57 +02:00
parent f253b23a67
commit a617c4db26
2 changed files with 2 additions and 3 deletions

View File

@ -271,8 +271,7 @@ class Application(object):
authorization = environ.get("HTTP_AUTHORIZATION", None)
if authorization:
authorization = \
authorization.decode("ascii").lstrip("Basic").strip()
authorization = authorization.lstrip("Basic").strip()
user, password = self.decode(base64.b64decode(
authorization.encode("ascii")), environ).split(":", 1)
else:

View File

@ -136,7 +136,7 @@ class HtpasswdAuthSystem(BaseTest):
fd.write(b"tmp:{SHA}" + base64.b64encode(
hashlib.sha1(b"bepo").digest()))
config.set("auth", "type", "htpasswd")
self.userpass = base64.b64encode(b"tmp:bepo")
self.userpass = "dG1wOmJlcG8="
self.application = radicale.Application()
htpasswd.FILENAME = htpasswd_file_path
htpasswd.ENCRYPTION = "sha1"