summary refs log tree commit diff
path: root/scripts/hash_password (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move scripts directory inside synapse, exposing as setuptools entry_points ↵David Robertson2022-03-021-79/+0
| | | | | | | | | | | | (#12118) * Two scripts are basically entry_points already * Move and rename scripts/* to synapse/_scripts/*.py * Delete sync_room_to_group.pl * Expose entry points in setup.py * Update linter script and config * Fixup scripts & docs mentioning scripts that moved Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
* Run `black` on the scripts (#9981)Richard van der Hoff2021-05-141-3/+3
| | | | Turns out these scripts weren't getting linted.
* Avoid attribute error when `password_config` present but empty (#6753)Ivan Vilata-i-Balaguer2020-01-221-1/+1
| | | | | | | | | | The old statement returned `None` for such a `password_config` (like the one created on first run), thus retrieval of the `pepper` key failed with `AttributeError`. Fixes #5315 Signed-off-by: Ivan Vilata i Balaguer <ivan@selidor.net>
* Port hash_password to Python 3 (#4161)Amber Brown2018-11-081-7/+34
| | | | | | * port hash_password * changelog
* Make scripts/ and scripts-dev/ pass pyflakes (and the rest of the codebase ↵Amber Brown2018-10-201-4/+1
| | | | on py3) (#4068)
* Update hash_password scriptKent Shikama2016-07-061-1/+17
| | | | Signed-off-by: Kent Shikama <kent@kentshikama.com>
* Password reset docs and scriptRichard van der Hoff2016-03-161-0/+39
Replace the bash/perl gen_password script with a python one, and write a note on how to use it.