diff --git a/nucypher-core-python/nucypher_core/__init__.py b/nucypher-core-python/nucypher_core/__init__.py index 51e541d1..cb500c48 100644 --- a/nucypher-core-python/nucypher_core/__init__.py +++ b/nucypher-core-python/nucypher_core/__init__.py @@ -24,5 +24,5 @@ SessionSharedSecret, SessionStaticKey, SessionStaticSecret, - SessionKeyFactory, + SessionSecretFactory, ) diff --git a/nucypher-core-python/nucypher_core/__init__.pyi b/nucypher-core-python/nucypher_core/__init__.pyi index 745b6011..fce1d08b 100644 --- a/nucypher-core-python/nucypher_core/__init__.pyi +++ b/nucypher-core-python/nucypher_core/__init__.pyi @@ -518,10 +518,10 @@ class SessionStaticSecret: ... -class SessionKeyFactory: +class SessionSecretFactory: @staticmethod - def random() -> SessionKeyFactory: + def random() -> SessionSecretFactory: ... @staticmethod @@ -529,7 +529,7 @@ class SessionKeyFactory: ... @staticmethod - def from_secure_randomness(seed: bytes) -> SessionKeyFactory: + def from_secure_randomness(seed: bytes) -> SessionSecretFactory: ... def make_key(self, label: bytes) -> SessionStaticSecret: