massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Werkzeug / werkzeug / security.pyi
1 from typing import Any
2
3 SALT_CHARS: Any
4 DEFAULT_PBKDF2_ITERATIONS: Any
5
6 def pbkdf2_hex(data, salt, iterations=..., keylen: Any | None = ..., hashfunc: Any | None = ...): ...
7 def pbkdf2_bin(data, salt, iterations=..., keylen: Any | None = ..., hashfunc: Any | None = ...): ...
8 def safe_str_cmp(a, b): ...
9 def gen_salt(length): ...
10 def generate_password_hash(password, method: str = ..., salt_length: int = ...): ...
11 def check_password_hash(pwhash, password): ...
12 def safe_join(directory, filename): ...