diff --git a/maxkey-core/src/main/java/org/maxkey/autoconfigure/ApplicationAutoConfiguration.java b/maxkey-core/src/main/java/org/maxkey/autoconfigure/ApplicationAutoConfiguration.java index 8039066af..f9bbae184 100644 --- a/maxkey-core/src/main/java/org/maxkey/autoconfigure/ApplicationAutoConfiguration.java +++ b/maxkey-core/src/main/java/org/maxkey/autoconfigure/ApplicationAutoConfiguration.java @@ -135,7 +135,7 @@ public class ApplicationAutoConfiguration implements InitializingBean { String idForEncode = "bcrypt"; Map encoders = new HashMap(); encoders.put(idForEncode, new BCryptPasswordEncoder()); - encoders.put("noop", NoOpPasswordEncoder.getInstance()); + encoders.put("plain", NoOpPasswordEncoder.getInstance()); encoders.put("pbkdf2", new Pbkdf2PasswordEncoder()); encoders.put("scrypt", new SCryptPasswordEncoder()); //md