summaryrefslogtreecommitdiff
path: root/kvmd/apps/vnc/rfb/crypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/apps/vnc/rfb/crypto.py')
-rw-r--r--kvmd/apps/vnc/rfb/crypto.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/kvmd/apps/vnc/rfb/crypto.py b/kvmd/apps/vnc/rfb/crypto.py
index 854dceb3..8953bef5 100644
--- a/kvmd/apps/vnc/rfb/crypto.py
+++ b/kvmd/apps/vnc/rfb/crypto.py
@@ -22,8 +22,6 @@
import os
-from typing import List
-
import passlib.crypto.des
@@ -43,7 +41,7 @@ def rfb_encrypt_challenge(challenge: bytes, passwd: bytes) -> bytes:
def _make_key(passwd: bytes) -> bytes:
passwd = (passwd + b"\0" * 8)[:8]
- key: List[int] = []
+ key: list[int] = []
for ch in passwd:
btgt = 0
for index in range(8):