java 公钥私钥_java RSA 生成公钥私钥

/*** 引进的包都是Java自带的jar包

* 秘钥相关包

* base64 编解码

* 这里只用到了编码*/

importjava.security.Key;importjava.security.KeyPair;importjava.security.KeyPairGenerator;importjava.security.interfaces.RSAPrivateKey;importjava.security.interfaces.RSAPublicKey;importjava.util.HashMap;importjava.util.Map;importsun.misc.BASE64Decoder;importsun.misc.BASE64Encoder;public classCreateSecrteKey {public classKeys {

}public static final String KEY_ALGORITHM = "RSA";//public static final String SIGNATURE_ALGORITHM = "MD5withRSA";

private static final String PUBLIC_KEY = "RSAPublicKey";private static final String PRIVATE_KEY = "RSAPrivateKey";//获得公钥

public static String getPublicKey(Map keyMap) throwsException {//获得map中的公钥对象 转为key对象

Key key =(Key) keyMap.get(PUBLIC_KEY);//byte[] publicKey = key.getEncoded();//编码返回字符串

returnencryptBASE64(key.getEncoded());

}//获得私钥

public static String getPrivateKey(Map keyMap) throwsException {//获得map中的私钥对象 转为key对象

Key key =(Key) keyMap.get(PRIVATE_KEY);//byte[] privateKey = key.getEncoded();//编码返回字符串

returnencryptBASE64(key.getEncoded());

}//解码返回byte

public static byte[] decryptBASE64(String key) throwsException {return (newBASE64Decoder()).decodeBuffer(key);

}//编码返回字符串

public static String encryptBASE64(byte[] key) throwsException {return (newBASE64Encoder()).encodeBuffer(key);

}//map对象中存放公私钥

public static Map initKey() throwsException {//获得对象 KeyPairGenerator 参数 RSA 1024个字节

KeyPairGenerator keyPairGen =KeyPairGenerator.getInstance(KEY_ALGORITHM);

keyPairGen.initialize(1024);//通过对象 KeyPairGenerator 获取对象KeyPair

KeyPair keyPair =keyPairGen.generateKeyPair();//通过对象 KeyPair 获取RSA公私钥对象RSAPublicKey RSAPrivateKey

RSAPublicKey publicKey =(RSAPublicKey) keyPair.getPublic();

RSAPrivateKey privateKey=(RSAPrivateKey) keyPair.getPrivate();//公私钥对象存入map中

Map keyMap = new HashMap(2);

keyMap.put(PUBLIC_KEY, publicKey);

keyMap.put(PRIVATE_KEY, privateKey);returnkeyMap;

}public static voidmain(String[] args) {

MapkeyMap;try{

keyMap=initKey();

String publicKey=getPublicKey(keyMap);

System.out.println(publicKey);

String privateKey=getPrivateKey(keyMap);

System.out.println(privateKey);

}catch(Exception e) {

e.printStackTrace();

}

}

RSA是一种非对称加密算法,它使用公钥私钥来加密和解密数据。在Java生成RSA公钥私钥的步骤如下: 1. 导入相关的类库: ```java import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.NoSuchAlgorithmException; import java.security.PrivateKey; import java.security.PublicKey; ``` 2. 初始化密钥对生成器: ```java KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA"); keyGen.initialize(2048); ``` 其中,第一行代码创建了一个KeyPairGenerator对象,指定算法为RSA;第二行代码初始化了密钥对生成器,并指定密钥长度为2048位。 3. 生成密钥对: ```java KeyPair keyPair = keyGen.generateKeyPair(); PrivateKey privateKey = keyPair.getPrivate(); PublicKey publicKey = keyPair.getPublic(); ``` 其中,第一行代码生成了密钥对;第二行代码获取了私钥;第三行代码获取了公钥。 完整代码示例如下: ```java import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.NoSuchAlgorithmException; import java.security.PrivateKey; import java.security.PublicKey; public class RSAGenerator { public static void main(String[] args) throws NoSuchAlgorithmException { // 初始化密钥对生成KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA"); keyGen.initialize(2048); // 生成密钥对 KeyPair keyPair = keyGen.generateKeyPair(); PrivateKey privateKey = keyPair.getPrivate(); PublicKey publicKey = keyPair.getPublic(); // 输出公钥私钥 System.out.println("私钥:" + privateKey); System.out.println("公钥:" + publicKey); } } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值