Skip to content

Commit

Permalink
Add Turbo* classes to xof_py.pyi
Browse files Browse the repository at this point in the history
  • Loading branch information
tritoke committed Jul 28, 2024
1 parent a6ac76b commit e9143db
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions xof_py.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,31 @@ class Shaker256:
class Sponge256:
def read(self, n: int) -> bytes:
...

class TurboShaker128:
def __init__(self, domain_sep: int, input_bytes: bytes | None = None):
...

def absorb(self, input_bytes: bytes) -> None:
...

def finalize(self) -> Sponge128:
...

class TurboSponge128:
def read(self, n: int) -> bytes:
...

class TurboShaker256:
def __init__(self, domain_sep: int, input_bytes: bytes | None = None):
...

def absorb(self, input_bytes: bytes) -> None:
...

def finalize(self) -> Sponge128:
...

class TurboSponge256:
def read(self, n: int) -> bytes:
...

0 comments on commit e9143db

Please sign in to comment.