aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java
diff options
context:
space:
mode:
authorac2550 <ac2550@intl.att.com>2018-03-22 17:04:06 +0100
committerSébastien Determe <sd378r@intl.att.com>2018-03-23 08:47:07 +0000
commit5c4aee562b7fcb42f10aa62011e0ff6297cee867 (patch)
tree4be75b3f39178f36c031a28b683a302773d41485 /src/main/java
parent3308b5439cb1d046398744e4d913ece518de9532 (diff)
Remove client usage of md5
Md5 usage introduce a security flow by reducing the amount of test needed for a brute force attack. Change-Id: Ifa4e6259d0a3fb06c91c03d1c67470ddd02284fc Issue-ID: CLAMP-143 Signed-off-by: ac2550 <ac2550@intl.att.com>
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/org/onap/clamp/clds/config/spring/CldsSecurityConfigUsers.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/clamp/clds/config/spring/CldsSecurityConfigUsers.java b/src/main/java/org/onap/clamp/clds/config/spring/CldsSecurityConfigUsers.java
index 4dff9ce1b..0f3d0d59e 100644
--- a/src/main/java/org/onap/clamp/clds/config/spring/CldsSecurityConfigUsers.java
+++ b/src/main/java/org/onap/clamp/clds/config/spring/CldsSecurityConfigUsers.java
@@ -130,7 +130,7 @@ public class CldsSecurityConfigUsers extends WebSecurityConfigurerAdapter {
if ("bcrypt".equals(cldsEncoderMethod)) {
return new BCryptPasswordEncoder(cldsBcryptEncoderStrength);
} else {
- throw new CldsConfigException("Invalid clamp.config.security.encoder value. Must be one of [bcrypt, none]");
+ throw new CldsConfigException("Invalid clamp.config.security.encoder value. 'bcrypt' is the only option at this time.");
}
}
}