001package top.cenze.utils.pojo;
002
003import com.fasterxml.jackson.annotation.JsonInclude;
004import lombok.Data;
005
006/**
007 * @desc: RSA 密钥对
008 * @author: chengze
009 * @createByDate: 2024/6/17 11:13
010 */
011@Data
012@JsonInclude(JsonInclude.Include.NON_NULL)
013public class RsaKeyPair {
014
015    private String privateKey;
016
017    private String publicKey;
018}