添加加密器配置.

This commit is contained in:
lijiahang
2023-07-08 02:17:54 +08:00
parent 58c6a30f7c
commit 4e956b95e4
3 changed files with 5 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
package com.orion.ops.framework.common.crypto;
import com.orion.lang.utils.crypto.symmetric.SymmetricCrypto;
/**
* 数据加密器
*
* @author Jiahang Li
* @version 1.0.0
* @since 2023/7/8 0:20
*/
public interface ValueCrypto extends SymmetricCrypto {
/**
* 初始化
*/
void init();
}