Skip to content

Commit 97db08d

Browse files
committed
chore: clean up crypto.py by removing unused imports
1 parent 331b340 commit 97db08d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

src/phase/utils/crypto.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,15 @@
22
from typing import Tuple
33
import string
44
from nacl.secret import SecretBox
5-
from typing import List
6-
from nacl.encoding import RawEncoder
75
import functools
86
import nacl.bindings
9-
from nacl.encoding import HexEncoder
10-
from nacl.public import PrivateKey
117
from nacl.bindings import (
128
crypto_kx_keypair,
139
crypto_aead_xchacha20poly1305_ietf_encrypt,
1410
crypto_aead_xchacha20poly1305_ietf_decrypt,
15-
randombytes,
16-
crypto_secretbox_NONCEBYTES,
17-
crypto_kx_server_session_keys,
18-
crypto_kx_client_session_keys,
19-
crypto_kx_seed_keypair,
2011
)
2112
from nacl.hash import blake2b
2213
from nacl.utils import random
23-
from base64 import b64encode, b64decode
2414
from .const import __ph_version__
2515

2616

0 commit comments

Comments
 (0)