Skip to content

Commit

Permalink
Fix incorrect rename of a python binding.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Jun 6, 2023
1 parent be47d40 commit 210bf4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nucypher-core-python/nucypher_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
SessionSharedSecret,
SessionStaticKey,
SessionStaticSecret,
SessionKeyFactory,
SessionSecretFactory,
)
6 changes: 3 additions & 3 deletions nucypher-core-python/nucypher_core/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -518,18 +518,18 @@ class SessionStaticSecret:
...


class SessionKeyFactory:
class SessionSecretFactory:

@staticmethod
def random() -> SessionKeyFactory:
def random() -> SessionSecretFactory:
...

@staticmethod
def seed_size() -> int:
...

@staticmethod
def from_secure_randomness(seed: bytes) -> SessionKeyFactory:
def from_secure_randomness(seed: bytes) -> SessionSecretFactory:
...

def make_key(self, label: bytes) -> SessionStaticSecret:
Expand Down

0 comments on commit 210bf4b

Please sign in to comment.