crypt is not available on Windows (#6738)

This commit is contained in:
Alex Waygood
2021-12-29 19:45:18 +00:00
committed by GitHub
parent 34a7e753aa
commit 8baa56b054

View File

@@ -1,20 +1,18 @@
import sys
class _Method: ...
if sys.platform != "win32":
class _Method: ...
METHOD_CRYPT: _Method
METHOD_MD5: _Method
METHOD_SHA256: _Method
METHOD_SHA512: _Method
if sys.version_info >= (3, 7):
METHOD_BLOWFISH: _Method
METHOD_CRYPT: _Method
METHOD_MD5: _Method
METHOD_SHA256: _Method
METHOD_SHA512: _Method
if sys.version_info >= (3, 7):
METHOD_BLOWFISH: _Method
methods: list[_Method]
methods: list[_Method]
if sys.version_info >= (3, 7):
def mksalt(method: _Method | None = ..., *, rounds: int | None = ...) -> str: ...
else:
def mksalt(method: _Method | None = ...) -> str: ...
def crypt(word: str, salt: str | _Method | None = ...) -> str: ...
if sys.version_info >= (3, 7):
def mksalt(method: _Method | None = ..., *, rounds: int | None = ...) -> str: ...
else:
def mksalt(method: _Method | None = ...) -> str: ...
def crypt(word: str, salt: str | _Method | None = ...) -> str: ...