massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / werkzeug / security.pyi
1 from typing import Any\r
2 \r
3 SALT_CHARS = ...  # type: Any\r
4 DEFAULT_PBKDF2_ITERATIONS = ...  # type: Any\r
5 \r
6 def pbkdf2_hex(data, salt, iterations=..., keylen=None, hashfunc=None): ...\r
7 def pbkdf2_bin(data, salt, iterations=..., keylen=None, hashfunc=None): ...\r
8 def safe_str_cmp(a, b): ...\r
9 def gen_salt(length): ...\r
10 def generate_password_hash(password, method='', salt_length=8): ...\r
11 def check_password_hash(pwhash, password): ...\r
12 def safe_join(directory, filename): ...\r