fix 处理可能有未加密数据传入解密中

(cherry picked from commit 33ad3fc154)
This commit is contained in:
lijiarao
2022-06-09 14:33:37 +08:00
parent 071a8df6d0
commit 5523dfde46
@@ -143,7 +143,11 @@ public class PasswordUtil {
catch (Exception e) {
// TODO: handle exception
}
return new String(passDec);
if (passDec == null){
return ciphertext;
}else {
return new String(passDec);
}
}
/**