|
@@ -7,14 +7,14 @@ import com.chelvc.framework.security.config.SecurityProperties;
|
|
|
import lombok.NonNull;
|
|
|
|
|
|
/**
|
|
|
- * 动态数据安全加解密处理抽象实现
|
|
|
+ * 自定义数据安全加解密处理抽象实现
|
|
|
*
|
|
|
* @author Woody
|
|
|
* @date 2025/1/6
|
|
|
*/
|
|
|
-public abstract class DynamicSecurityCipherHandler extends AbstractSecurityCipherHandler
|
|
|
+public abstract class CustomizeSecurityCipherHandler extends AbstractSecurityCipherHandler
|
|
|
implements SecurityCipherHandler {
|
|
|
- public DynamicSecurityCipherHandler(@NonNull SecurityProperties.Crypto properties) {
|
|
|
+ public CustomizeSecurityCipherHandler(@NonNull SecurityProperties.Crypto properties) {
|
|
|
super(properties);
|
|
|
}
|
|
|
|