Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
94235e2e
Commit
94235e2e
authored
Mar 31, 2009
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed usage of ZEO.hash
parent
84c96a21
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
8 deletions
+9
-8
src/ZEO/auth/auth_digest.py
src/ZEO/auth/auth_digest.py
+4
-4
src/ZEO/auth/base.py
src/ZEO/auth/base.py
+2
-2
src/ZEO/zrpc/smac.py
src/ZEO/zrpc/smac.py
+3
-2
No files found.
src/ZEO/auth/auth_digest.py
View file @
94235e2e
...
...
@@ -37,13 +37,13 @@ TODO: I'm not sure if this is a sound approach; SRP would be preferred.
import
os
import
random
import
sha
import
struct
import
time
from
ZEO.auth.base
import
Database
,
Client
from
ZEO.StorageServer
import
ZEOStorage
from
ZEO.Exceptions
import
AuthError
from
ZEO.hash
import
sha1
def
get_random_bytes
(
n
=
8
):
if
os
.
path
.
exists
(
"/dev/urandom"
):
...
...
@@ -56,7 +56,7 @@ def get_random_bytes(n=8):
return
s
def
hexdigest
(
s
):
return
sha
.
new
(
s
).
hexdigest
()
return
sha
1
(
s
).
hexdigest
()
class
DigestDatabase
(
Database
):
def
__init__
(
self
,
filename
,
realm
=
None
):
...
...
@@ -76,7 +76,7 @@ def session_key(h_up, nonce):
# HMAC wants a 64-byte key. We don't want to use h_up
# directly because it would never change over time. Instead
# use the hash plus part of h_up.
return
sha
.
new
(
"%s:%s"
%
(
h_up
,
nonce
)).
digest
()
+
h_up
[:
44
]
return
sha
1
(
"%s:%s"
%
(
h_up
,
nonce
)).
digest
()
+
h_up
[:
44
]
class
StorageClass
(
ZEOStorage
):
def
set_database
(
self
,
database
):
...
...
@@ -92,7 +92,7 @@ class StorageClass(ZEOStorage):
def
_get_nonce
(
self
):
# RFC 2069 recommends a nonce of the form
# H(client-IP ":" time-stamp ":" private-key)
dig
=
sha
.
sha
()
dig
=
sha
1
()
dig
.
update
(
str
(
self
.
connection
.
addr
))
dig
.
update
(
self
.
_get_time
())
dig
.
update
(
self
.
noncekey
)
...
...
src/ZEO/auth/base.py
View file @
94235e2e
...
...
@@ -18,7 +18,7 @@ Client -- abstract base class for authentication client
"""
import
os
import
sha
from
ZEO.hash
import
sha1
class
Client
:
# Subclass should override to list the names of methods that
...
...
@@ -113,7 +113,7 @@ class Database:
return
self
.
_users
[
username
]
def
hash
(
self
,
s
):
return
sha
.
new
(
s
).
hexdigest
()
return
sha
1
(
s
).
hexdigest
()
def
add_user
(
self
,
username
,
password
):
if
self
.
_users
.
has_key
(
username
):
...
...
src/ZEO/zrpc/smac.py
View file @
94235e2e
...
...
@@ -42,6 +42,7 @@ from ZODB.loglevels import TRACE
from
ZEO.zrpc.log
import
log
,
short_repr
from
ZEO.zrpc.error
import
DisconnectedError
import
ZEO.hash
# Use the dictionary to make sure we get the minimum number of errno
...
...
@@ -147,8 +148,8 @@ class SizedMessageAsyncConnection(asyncore.dispatcher):
# and thus iterator, because it contains a yield statement.
def
hack
():
self
.
__hmac_send
=
hmac
.
HMAC
(
sesskey
,
digestmod
=
sha
)
self
.
__hmac_recv
=
hmac
.
HMAC
(
sesskey
,
digestmod
=
sha
)
self
.
__hmac_send
=
hmac
.
HMAC
(
sesskey
,
digestmod
=
ZEO
.
hash
)
self
.
__hmac_recv
=
hmac
.
HMAC
(
sesskey
,
digestmod
=
ZEO
.
hash
)
if
False
:
yield
''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment