Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 grails 3.xx 应用程序中创建/更新密码时遇到问题。每当我尝试输入任何特殊情况时,让我们说“@”,它只在密码字段中编码这个特殊字符。密码值来自请求正文。
Example: Real password : abc@555 Auto Encoded password : abc%40555
Grails 默认使用一个插件,该插件使用 bcrypt 算法对密码进行哈希处理以确保安全。有一些可配置的密码哈希属性。您可以使用 grails.plugin.springsecurity.password.algorithm 属性自定义密码插件。