java RSA 简单加密

package com.security; import java.security.InvalidKeyException;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.NoSuchAlgorithmException;
import java.security.interfaces.RSAPrivateKey;
import java.security.interfaces.RSAPublicKey;java

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

/**安全

  • @author Administrator *1976年,美国学者Dime和Henman为解决信息公开传送和密钥管理问题,提出一种新的密钥交换协议,容许在不安全的媒体上的通信双方交换信息,安全地达成一致的密钥, *这就是“公开密钥系统”。相对于“对称加密算法”这种方法也叫作“非对称加密算法”。 与对称加密算法不一样,非对称加密算法须要两个密钥:公开密钥(publickey)和私有密钥 (privatekey)。公开密钥与私有密钥是一对,若是用公开密钥对数据进行加密,只有用对应的私有密钥才能解密;若是用私有密钥对数据进行加密,那么只有用对应的公开密钥才能解密。 由于加密和解密使用的是两个不一样的密钥,因此这种算法叫做非对称加密算法。
  1. RSA 公钥加密算法是1977年由Ron Rivest、Adi Shamirh和LenAdleman在(美国麻省理工学院)开发的。RSA取名来自开发他们三者的名字。 RSA是目前最有影响力的公钥加密算法,它可以抵抗到目前为止已知的全部密码攻击,已被ISO推荐为公钥数据加密标准。RSA算法基于一个十分简单的数论事实: 将两个大素数相乘十分容易,但那时想要对其乘积进行因式分解却极其困难,所以能够将乘积公开做为加密密钥。 */ public class RSA {加密

    /**对象

    • 加密 /
      protected byte[] encrypt(RSAPublicKey publicKey,byte[] srcBytes) throws Exception{
      if(publicKey!=null){
      //Cipher负责完成加密或解密工做,基于RSA
      Cipher cipher = Cipher.getInstance("RSA");
      //根据公钥,对Cipher对象进行初始化
      cipher.init(Cipher.ENCRYPT_MODE, publicKey);
      byte[] resultBytes = cipher.doFinal(srcBytes);
      return resultBytes;
      }
      return null;
      }
      /
      *ip

    • 解密
      /
      protected byte[] decrypt(RSAPrivateKey privateKey,byte[] srcBytes) throws Exception{
      if(privateKey!=null){
      //Cipher负责完成加密或解密工做,基于RSA
      Cipher cipher = Cipher.getInstance("RSA");
      //根据公钥,对Cipher对象进行初始化
      cipher.init(Cipher.DECRYPT_MODE, privateKey);
      byte[] resultBytes = cipher.doFinal(srcBytes);
      return resultBytes;
      }
      return null;
      }
      /
      *ci

    • test */
      public static void main(String[] args) throws Exception {
      RSA rsa = new RSA();
      String msg = "张三是好人";
      //KeyPairGenerator类用于生成公钥和私钥对,基于RSA算法生成对象
      KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");
      //初始化密钥对生成器,密钥大小为1024位
      keyPairGen.initialize(1024);
      //生成一个密钥对,保存在keyPair中
      KeyPair keyPair = keyPairGen.generateKeyPair();
      //获得私钥
      RSAPrivateKey privateKey = (RSAPrivateKey)keyPair.getPrivate();
      //获得公钥
      RSAPublicKey publicKey = (RSAPublicKey)keyPair.getPublic();开发

      //用公钥加密
      byte[] srcBytes = msg.getBytes();
      byte[] resultBytes = rsa.encrypt(publicKey, srcBytes);get

      //用私钥解密
      byte[] decBytes = rsa.decrypt(privateKey, resultBytes);it

      System.out.println("明文是:" + msg);
      System.out.println("加密后是:" + new String(resultBytes));
      System.out.println("解密后是:" + new String(decBytes));
      }

}