enable test folders: select_for_update, i18n, httpwrappers, auth_tests, extra_regress (#107)

This commit is contained in:
Maxim Kurnikov
2019-07-10 19:38:36 +03:00
committed by GitHub
parent b397ec04a9
commit 335c5765c3
14 changed files with 150 additions and 26 deletions

View File

@@ -23,7 +23,7 @@ class BasePasswordHasher:
memory_cost: int = ...
parallelism: int = ...
digest: Any = ...
iterations: Optional[int] = ...
iterations: int = ...
def salt(self) -> str: ...
def verify(self, password: str, encoded: str) -> bool: ...
def encode(self, password: str, salt: str) -> Any: ...