-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mod_scram_upgrade - add example to config #4301
Comments
The only thing I can say for sure is what I tried:
If you setup If you then change to
I wonder how exactly mod_scram_upgrade is designed to be used in practice by an administrator, its use-case. For example, let's imagine it's SHA-1 right now and SHA-256 is desired. With the configuration is like this: auth_password_format: scram
auth_scram_hash: sha Then what should the admin setup? A) Store new as sha, offer upgrade to sha256? auth_password_format: scram
auth_scram_hash: sha
modules:
mod_scram_upgrade:
offered_upgrades:
- sha256 B) Store the new as sha256, offer upgrade to sha256? auth_password_format: scram
auth_scram_hash: sha256
modules:
mod_scram_upgrade:
offered_upgrades:
- sha256 @prefiks any idea here? I also wonder what clients already support XEP-0480 to test the feature |
Currently, I know Monal IM which supports it:
It has been requested for XMPP Clients:
It has been requested for XMPP Library: It has been requested for XMPP Server: XEP-0480 is linked to this @tmolitor-stud-tu initial request: |
@badlop I guess it is option B) Store the new as sha256, offer upgrade to sha256? |
reading https://docs.ejabberd.im/admin/configuration/modules/#mod_scram_upgrade
and then reading https://docs.ejabberd.im/admin/configuration/toplevel/#auth_scram_hash I see
gets me confused
if
auth_scram_hash
isThe default value is sha
then how can I upgrade?The text was updated successfully, but these errors were encountered: