kjb-safedb 로 PasswordEncoer 변경 / 가입자 수정 화면에서 수정버튼 항상 활성화

This commit is contained in:
Rinjae
2025-09-30 11:53:05 +09:00
parent 5c5e69a2df
commit 3f20673b69
4 changed files with 22 additions and 15 deletions
@@ -3,7 +3,6 @@ package com.eactive.eai.custom.kjb.common.spring;
import com.eactive.ext.kjb.safedb.KjbSafedbWrapper;
import org.springframework.security.crypto.password.PasswordEncoder;
public class KjbSafedbPasswordEncoder implements PasswordEncoder {
@Override
public String encode(CharSequence rawPassword) {
@@ -17,5 +16,4 @@ public class KjbSafedbPasswordEncoder implements PasswordEncoder {
String encoded = safedb.encryptPassword(rawPassword.toString());
return encoded.equals(encodedPassword);
}
}