diff options
author | Eric Hartmann <hartmann.eric@gmail.com> | 2018-04-13 18:26:16 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-04-17 20:20:48 +0200 |
commit | 7f88e7c22d4b61d36cbb4a62990f5fe144e80c2d (patch) | |
tree | 5b65b9b899b164fc95cfabbacb6fef3da66b0727 /sonar-core/build.gradle | |
parent | f7adccdc63aa7b93ed20425a3224da0c5e6a5bba (diff) | |
download | sonarqube-7f88e7c22d4b61d36cbb4a62990f5fe144e80c2d.tar.gz sonarqube-7f88e7c22d4b61d36cbb4a62990f5fe144e80c2d.zip |
SONAR-6949 Implements bcrypt hash for password
Extract hash mechanism into a single class LocalAuthentication
Implements SHA1 (deprecated) and bcrypt hash
Set bcrypt as default
Update the hash of a user during authentication if hash method was SHA1
Diffstat (limited to 'sonar-core/build.gradle')
-rw-r--r-- | sonar-core/build.gradle | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sonar-core/build.gradle b/sonar-core/build.gradle index cecce8b43fd..a2d0f1bb189 100644 --- a/sonar-core/build.gradle +++ b/sonar-core/build.gradle @@ -20,7 +20,6 @@ dependencies { compile 'org.picocontainer:picocontainer' compile 'org.slf4j:slf4j-api' compile 'org.sonarsource.update-center:sonar-update-center-common' - compile 'org.mindrot:jbcrypt' compile project(path: ':sonar-plugin-api', configuration: 'shadow') compileOnly 'com.google.code.findbugs:jsr305' |