java RSA 生成公钥私钥编码与Base64编码

RSA 生成公钥私钥

引用:https://www.cnblogs.com/only-jlk/p/5960900.html

import java.security.Key;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.interfaces.RSAPrivateKey;
import java.security.interfaces.RSAPublicKey;
import java.util.HashMap;
import java.util.Map;

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

public class CreateSecrteKey {

  public class Keys {

  }

  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<String, Object> keyMap) throws Exception {

    //获得map中的公钥对象 转为key对象
    Key key = (Key) keyMap.get(PUBLIC_KEY);

    //byte[] publicKey = key.getEncoded();
    //编码返回字符串
    return encryptBASE64(key.getEncoded());
  }

  //获得私钥
  public static String getPrivateKey(Map<String, Object> keyMap) throws Exception {

    //获得map中的私钥对象 转为key对象
    Key key = (Key) keyMap.get(PRIVATE_KEY);

    //byte[] privateKey = key.getEncoded();
    //编码返回字符串
    return encryptBASE64(key.getEncoded());
  }

  //解码返回byte
  public static byte[] decryptBASE64(String key) throws Exception {
    return (new BASE64Decoder()).decodeBuffer(key);
  }

  //编码返回字符串
  public static String encryptBASE64(byte[] key) throws Exception {
    return (new BASE64Encoder()).encodeBuffer(key);
  }

  //map对象中存放公私钥
  public static Map<String, Object> initKey() throws Exception {

    //获得对象 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<String, Object> keyMap = new HashMap<String, Object>(2);
    keyMap.put(PUBLIC_KEY, publicKey);
    keyMap.put(PRIVATE_KEY, privateKey);
    return keyMap;
  }

  public static void main(String[] args) {

    Map<String, Object> keyMap;
    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实现)

https://blog.csdn.net/qy20115549/article/details/83105736

 

Base64编码

apache.commons-codex包提供了许多编码格式转换,例如Base64。

在这里插入图片描述

 

以下为Base64编码表
使用apache.commons-codex进行Base64对字符串进行编码与解码的程序如下:


import org.apache.commons.codec.binary.Base64;

public class Base64Coded {
	public static void main(String[] args) {
		String string = "pbyang123456";
		//编码
		String encode = encode(string.getBytes());
		System.out.println(string + "\t编码后的字符串为:" + encode);
		//解码
		String decode = decode(encode.getBytes());
		System.out.println(encode + "\t字符串解码后为:" + decode);
	}
	//base64 解码
    public static String decode(byte[] bytes) {  
        return new String(Base64.decodeBase64(bytes));  
    }  
  
    //base64 编码
    public static String encode(byte[] bytes) {  
        return new String(Base64.encodeBase64(bytes));  
    }  
}


 

以下是 Java 生成 RSA 公钥私钥并写入文件的代码: ```java import java.io.FileOutputStream; import java.io.IOException; import java.security.*; import java.security.spec.PKCS8EncodedKeySpec; import java.security.spec.X509EncodedKeySpec; import java.util.Base64; public class RSAKeyGenerator { public static void main(String[] args) throws NoSuchAlgorithmException, IOException { // 创建密钥对生成器 KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA"); // 初始化密钥对生成器,指定密钥长度(单位:位) keyPairGenerator.initialize(2048); // 生成密钥对 KeyPair keyPair = keyPairGenerator.generateKeyPair(); // 获取公钥私钥 PublicKey publicKey = keyPair.getPublic(); PrivateKey privateKey = keyPair.getPrivate(); // 将公钥私钥换为 Base64 编码的字符串 String publicKeyString = Base64.getEncoder().encodeToString(publicKey.getEncoded()); String privateKeyString = Base64.getEncoder().encodeToString(privateKey.getEncoded()); // 将公钥私钥写入文件 FileOutputStream publicKeyFile = new FileOutputStream("E:/publicKey.txt"); publicKeyFile.write(publicKeyString.getBytes()); publicKeyFile.close(); FileOutputStream privateKeyFile = new FileOutputStream("E:/privateKey.txt"); privateKeyFile.write(privateKeyString.getBytes()); privateKeyFile.close(); } } ``` 上述代码的主要变化是在获取公钥私钥后,将它们换为 Base64 编码的字符串,并写入到文件中。这里使用了 `java.util.Base64` 类来进行 Base64 编码。注意,写入文件时要使用字节流(`FileOutputStream`)。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值