Use internal implementation for X25519 key exchanges

This commit is contained in:
Mark Qvist
2022-06-08 13:36:23 +02:00
parent 7a596882a8
commit 06fffe5a94
4 changed files with 165 additions and 25 deletions
+10
View File
@@ -0,0 +1,10 @@
import os
import glob
from .Hashes import sha256
from .HKDF import hkdf
from .PKCS7 import PKCS7
from .Fernet import Fernet
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]