Skip to content

Commit 643e57e

Browse files
authored
Improve passlib.win32 (#13711)
1 parent 2dba432 commit 643e57e

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

stubs/passlib/@tests/stubtest_allowlist.txt

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ passlib.utils.decor.__all__
3232
passlib.utils.handlers.__all__
3333
passlib.utils.md4.__all__
3434
passlib.utils.pbkdf2.__all__
35-
passlib.win32.__all__
3635

3736
# proxy module that uses some import magic incompatible with stubtest
3837
passlib.hash

stubs/passlib/passlib/handlers/windows.pyi

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from _typeshed import Incomplete
2-
from typing import Any, ClassVar
2+
from typing import Any, ClassVar, Literal, overload
33

44
import passlib.utils.handlers as uh
55

@@ -17,8 +17,15 @@ class nthash(uh.StaticHandler):
1717
checksum_size: ClassVar[int]
1818
@classmethod
1919
def raw(cls, secret): ...
20+
@overload
2021
@classmethod
21-
def raw_nthash(cls, secret, hex: bool = False): ...
22+
def raw_nthash(cls, secret: str | bytes, hex: Literal[True]) -> str: ...
23+
@overload
24+
@classmethod
25+
def raw_nthash(cls, secret: str | bytes, hex: Literal[False] = False) -> bytes: ...
26+
@overload
27+
@classmethod
28+
def raw_nthash(cls, secret: str | bytes, hex: bool = False) -> str | bytes: ...
2229

2330
bsd_nthash: Any
2431

stubs/passlib/passlib/win32.pyi

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
from typing import Any
1+
from binascii import hexlify as hexlify
2+
from typing import Final, Literal, overload
23

3-
from passlib.hash import nthash as nthash
4+
from passlib.handlers.windows import nthash as nthash
45

5-
raw_nthash: Any
6+
LM_MAGIC: Final[bytes]
7+
raw_nthash = nthash.raw_nthash
68

7-
def raw_lmhash(secret, encoding: str = "ascii", hex: bool = False): ...
9+
@overload
10+
def raw_lmhash(secret: str | bytes, encoding: str = "ascii", hex: Literal[False] = False) -> bytes: ...
11+
@overload
12+
def raw_lmhash(secret: str | bytes, encoding: str, hex: Literal[True]) -> str: ...
13+
@overload
14+
def raw_lmhash(secret: str | bytes, *, hex: Literal[True]) -> str: ...
15+
16+
__all__ = ["nthash", "raw_lmhash", "raw_nthash"]

0 commit comments

Comments
 (0)