diff options
Diffstat (limited to 'src/leap/soledad/__init__.py')
-rw-r--r-- | src/leap/soledad/__init__.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/leap/soledad/__init__.py b/src/leap/soledad/__init__.py index 23d81e84..ea8c895e 100644 --- a/src/leap/soledad/__init__.py +++ b/src/leap/soledad/__init__.py @@ -38,7 +38,6 @@ except ImportError: import json # noqa -from binascii import b2a_base64 from hashlib import sha256 @@ -51,6 +50,7 @@ from leap.soledad.backends.leap_backend import ( LeapSyncTarget, ) from leap.soledad.shared_db import SoledadSharedDatabase +from leap.soledad.crypto import SoledadCrypto class KeyDoesNotExist(Exception): @@ -382,8 +382,7 @@ class Soledad(object): @return: the hash @rtype: str """ - return b2a_base64( - sha256('address-%s' % self._address).digest())[:-1] + return sha256('address-%s' % self._address).hexdigest() def _fetch_keys_from_shared_db(self): """ |