Spring Security Blowfish Encryption (bcrypt)
Dependency :
compile ":spring-security-bcrypt:0.3"
Summary
Installation
To install the plugin :
grails install-plugin spring-security-bcrypt
Description
Bcrypt
Use bcryptDescription
This plugin let you use the bcrypt file encryption algorithm to hash your users passwords instead of the regular algorithm provided by spring-security-core plugin. You can customize the computation cost of the algorithm to get stronger hashes.Installation
To install the plugin :grails install-plugin spring-security-bcrypt
Optional
To configure the log rounds (to add computation cost) :In 'grails-app/conf/Config.groovy' add :grails.plugins.springsecurity.bcrypt.logrounds = 12
The default log rounds number is 10.