chsm-server/chsm-web-server/src/main/java/params/DTOSymRes.java
2024-11-19 20:34:38 +08:00

23 lines
345 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package params;
import lombok.Data;
@Data
public class DTOSymRes {
// 应用 Id
private String appId;
// 密钥 Id
private String keyId;
// 算法
private String alg;
// iv 可以为 nullbase64 编码
private String iv;
// 计算数据 base64 编码
private String data;
}