diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-31 12:39:29 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-31 18:51:22 +0200 |
commit | 95687c3137d7ea7a4a64d373e1e5199061ee38e3 (patch) | |
tree | aa4afc5ed72df4c28aaa19b6092334da141c98bb /src/leap/bitmask/core | |
parent | 6aa1aeba607e59fb45af961fb74e9c1844694851 (diff) |
[bug] fix deprecated import of cryptography multibackend
- Resolves: #8910
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/uuid_map.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/leap/bitmask/core/uuid_map.py b/src/leap/bitmask/core/uuid_map.py index 262e3db4..e7d02a31 100644 --- a/src/leap/bitmask/core/uuid_map.py +++ b/src/leap/bitmask/core/uuid_map.py @@ -30,13 +30,11 @@ from leap.common.config import get_path_prefix IS_WIN = platform.system() == "Windows" if IS_WIN: + import socket from cryptography.fernet import Fernet - from cryptography.hazmat.backends.multibackend import MultiBackend - from cryptography.hazmat.backends.openssl.backend \ - import Backend as OpenSSLBackend - crypto_backend = MultiBackend([OpenSSLBackend()]) - + from cryptography.hazmat.backends import default_backend + crypto_backend = default_backend() MAP_PATH = os.path.join(get_path_prefix(), 'leap', 'uuids') |