wso2_shared_db中wso2用户table(um_user)的密码以何种加密方式存储?
In what encryption type are passwords of wso2 user table (um_user) in wso2_shared_db stored?
According to the official documentation有关wso2身份服务器用户的信息驻留在um_user table of wso2_shared_db。
我想问的问题是um_user中存储的是什么加密类型的密码?
默认情况下,用户密码使用带有随机盐的 SHA256 进行哈希处理。哈希算法可使用 PasswordDigest
属性 进行配置,如下所示。
[user_store.properties]
PasswordDigest = "SHA-256"
StoreSaltedPassword = true
PS:作为一般做法,密码以散列形式存储,不允许找到纯文本值。如果密码被加密,可以找到明文值。
According to the official documentation有关wso2身份服务器用户的信息驻留在um_user table of wso2_shared_db。 我想问的问题是um_user中存储的是什么加密类型的密码?
默认情况下,用户密码使用带有随机盐的 SHA256 进行哈希处理。哈希算法可使用 PasswordDigest
属性 进行配置,如下所示。
[user_store.properties]
PasswordDigest = "SHA-256"
StoreSaltedPassword = true
PS:作为一般做法,密码以散列形式存储,不允许找到纯文本值。如果密码被加密,可以找到明文值。