RSA帮助类

package com.cmb.fmserver.passport.util;

import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.interfaces.RSAPublicKey;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;

import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;

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

@SuppressWarnings("restriction")
public class RSAHelper {
	/**
	 * 得到公钥
	 * @throws IOException 
	 * @throws NoSuchAlgorithmException 
	 * @throws InvalidKeySpecException 
	 */

	public static PublicKey getPublicKey(String key) throws IOException,
			NoSuchAlgorithmException, InvalidKeySpecException {
		byte[] keyBytes;

		keyBytes = (new BASE64Decoder()).decodeBuffer(key);

		X509EncodedKeySpec keySpec = new X509EncodedKeySpec(keyBytes);

		KeyFactory keyFactory = KeyFactory.getInstance("RSA");

		PublicKey publicKey = keyFactory.generatePublic(keySpec);

		return publicKey;
	}

	public static PrivateKey getPrivateKey(String key) throws IOException,
			NoSuchAlgorithmException, InvalidKeySpecException {
		byte[] keyBytes;
		keyBytes = new BASE64Decoder().decodeBuffer(key);

		PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(keyBytes);
		KeyFactory keyFactory = KeyFactory.getInstance("RSA");
		PrivateKey privateKey = keyFactory.generatePrivate(keySpec);
		return privateKey;

	}

	public static String getKeyString(Key key) {
		byte[] keyBytes = key.getEncoded();
		String s = new BASE64Encoder().encode(keyBytes);
		return s;
	}

	public static void main(String[] args) throws IOException,
			NoSuchAlgorithmException, InvalidKeySpecException,
			NoSuchPaddingException, InvalidKeyException,
			IllegalBlockSizeException, BadPaddingException {
		//	System.out.println(RSAHelper.getPublicKey("hello"));

		KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");

		keyPairGen.initialize(1024);

		KeyPair keyPair = keyPairGen.generateKeyPair();

		//System.out.println(keyPair); //null

		//公钥
		PublicKey publicKey = (RSAPublicKey) keyPair.getPublic();

		System.out.println("publicKey:"+publicKey);

		//秘钥
		PrivateKey privateKey = keyPair.getPrivate();

		byte[] publicKeyBytes = publicKey.getEncoded();
		String publicKeyString = (new BASE64Encoder()).encode(publicKeyBytes);
		System.out.println("公钥串:"+publicKeyString);
		byte[] privateKeyBytes = privateKey.getEncoded();
		String privateKeyString = (new BASE64Encoder()).encode(privateKeyBytes);
		System.out.println("私钥串:"+privateKeyString);
		//加解密类
		Cipher cipher = Cipher.getInstance("RSA");
		String text = "你好世界方 啊方是sd";
		System.out.println("加密前:"+text);
		//明文
		byte[] plainText = text.getBytes();

		//加密
		cipher.init(Cipher.ENCRYPT_MODE, publicKey);
		byte[] enBytes = cipher.doFinal(plainText);

		//通过秘钥字符串得到秘钥
		publicKey = getPublicKey(publicKeyString);
		privateKey = getPrivateKey(privateKeyString);

		String encodedStr = new String(enBytes, "UTF-8");
		System.out.println("加密密文为:\n" + encodedStr);

		//解密
		cipher.init(Cipher.DECRYPT_MODE, privateKey);

		byte[] deBytes = cipher.doFinal(enBytes);

		//publicKeyString = getKeyString(publicKey);

		//	System.out.println("publicKeyString=\n"+publicKeyString);

		//privateKeyString = getKeyString(privateKey);
		//	System.out.println("privateKeyString=\n"+privateKeyString);

		String s = new String(deBytes);
		System.out.println("解密后:"+s);

	}

}

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值