All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dxy.library.util.cipher.pojo.RSAKeyPair Maven / Gradle / Ivy

The newest version!
package com.dxy.library.util.cipher.pojo;

import lombok.Data;

/**
 * RSA公私钥
 * @author duanxinyuan
 * 2018/10/15 16:19
 */
@Data
public class RSAKeyPair {

    //公钥(Base64编码)
    private String publicKey;

    //私钥(Base64编码)
    private String privateKey;

    //模数(Base64编码)
    private String modules;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy