mirror of
https://gitlab.crans.org/nounous/ghostream.git
synced 2025-06-27 05:28:44 +02:00
Reduce bcrypt rounds for demo password to 10 to displaying the bcrypt process in the CPU profiling
This commit is contained in:
@ -22,12 +22,12 @@ auth:
|
||||
|
||||
# Basic backend configuration
|
||||
# To generate bcrypt hashed password from Python, use:
|
||||
# python3 -c 'import bcrypt; print(bcrypt.hashpw(b"PASSWORD", bcrypt.gensalt(rounds=15)).decode("ascii"))'
|
||||
# python3 -c 'import bcrypt; print(bcrypt.hashpw(b"PASSWORD", bcrypt.gensalt(rounds=12)).decode("ascii"))'
|
||||
#
|
||||
#basic:
|
||||
# credentials:
|
||||
# # Demo user with password "demo"
|
||||
# demo: $2b$15$LRnG3eIHFlYIguTxZOLH7eHwbQC/vqjnLq6nDFiHSUDKIU.f5/1H6
|
||||
# demo: $2b$10$xuU7XFwmRX2CMgdSaA8rM.4Y8.BtRNzhUedwN0G8tCegDRNUERTCS
|
||||
|
||||
# LDAP backend configuration
|
||||
#
|
||||
|
Reference in New Issue
Block a user