You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the example in the README, passwords are encrypted using md5:
Tip: you can use atmoz/makepasswd to generate encrypted passwords:
echo -n "your-password" | docker run -i --rm atmoz/makepasswd --crypt-md5 --clearfrom=-
MD5 is considered broken since multiple years.
The example generation command seems to be generating an md5 hashed password (--crypt-md5).
Is this the only available hashing algorithm or are others available? If so, I am wondering how you specify it and would suggest using a non-borken algorithm in the README example.
The text was updated successfully, but these errors were encountered:
According to the example in the README, passwords are encrypted using md5:
MD5 is considered broken since multiple years.
The example generation command seems to be generating an md5 hashed password (--crypt-md5).
Is this the only available hashing algorithm or are others available? If so, I am wondering how you specify it and would suggest using a non-borken algorithm in the README example.
The text was updated successfully, but these errors were encountered: