RSA加密相关

发布时间:2020-07-17 18:08:04 作者:201131001027
来源:网络 阅读:665

RAS生成公钥 私钥对时,后缀必须为.pem,不然的话,读取秘钥的时候会报:invalid stream header: 2D2D2D2D 的错。

附:

package com.supyuan.util.encrypt;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.security.Key;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.SecureRandom;

import javax.crypto.Cipher;

import com.supyuan.util.PathUtils;

public class RSAUtils {
/ 指定加密算法为DESede */
private static String ALGORITHM = "RSA";
/* 指定key的大小 /
public static int KEYSIZE = 512;
/
编码 */
public static String ENCODE = "UTF-8";
/* 指定公钥存放文件 /
public static String PUBLIC_KEY_FILE = PathUtils.getResPath()+"/RSAEncrypt/pub.pem";
/* 指定私钥存放文件 /
public static String PRIVATE_KEY_FILE = PathUtils.getResPath()+"/RSAEncrypt/pri.pem";

/**
 * 生成密钥对
 */

private static void generateKeyPair() throws Exception {
    /** RSA算法要求有一个可信任的随机数源 */
    SecureRandom sr = new SecureRandom();
    /** 为RSA算法创建一个KeyPairGenerator对象 */
    KeyPairGenerator kpg = KeyPairGenerator.getInstance(ALGORITHM);
    /** 利用上面的随机数据源初始化这个KeyPairGenerator对象 */
    kpg.initialize(KEYSIZE, sr);
    /** 生成密匙对 */
    KeyPair kp = kpg.generateKeyPair();
    /** 得到公钥 */
    Key publicKey = kp.getPublic();
    /** 得到私钥 */
    Key privateKey = kp.getPrivate();
    /** 用对象流将生成的密钥写入文件 */
    ObjectOutputStream oos1 = new ObjectOutputStream(new FileOutputStream(PUBLIC_KEY_FILE));
    ObjectOutputStream oos2 = new ObjectOutputStream(new FileOutputStream(PRIVATE_KEY_FILE));
    oos1.writeObject(publicKey);
    oos2.writeObject(privateKey);
    /** 清空缓存,关闭文件输出流 */
    oos1.close();
    oos2.close();
}

/**
 * 加密方法 source: 源数据
 */
public static String encrypt(String source) throws Exception {
    // generateKeyPair();
    /** 将文件中的公钥对象读出 */
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream(PUBLIC_KEY_FILE));
    Key key = (Key) ois.readObject();
    ois.close();
    /** 得到Cipher对象来实现对源数据的RSA加密 */
    Cipher cipher = Cipher.getInstance(ALGORITHM);
    cipher.init(Cipher.ENCRYPT_MODE, key);
    byte[] b = source.getBytes();
    /** 执行加密操作 */
    byte[] b1 = cipher.doFinal(b);
    String result = new String(Base64.encodeBase64(b1), ENCODE);
    return result;
}

/**
 * 解密算法 cryptograph:密文
 */
public static String decrypt(String cryptograph) throws Exception {
    /** 将文件中的私钥对象读出 */
    ObjectInputStream ois = new ObjectInputStream(new FileInputStream(PRIVATE_KEY_FILE));
    Key key = (Key) ois.readObject();
    ois.close();

    /** 得到Cipher对象对已用公钥加密的数据进行RSA解密 */
    Cipher cipher = Cipher.getInstance(ALGORITHM);
    cipher.init(Cipher.DECRYPT_MODE, key);
    byte[] b1 = Base64.decodeBase64(cryptograph.getBytes(ENCODE));
    /** 执行解密操作 */
    byte[] b = cipher.doFinal(b1);
    return new String(b);
}

public static void main(String[] args) throws Exception {
    String source = "admin123";// 要加密的字符串
    // 第一次使用
    // RSAUtils.generateKeyPair();

    String cryptograph = RSAUtils.encrypt(source);// 生成的密文
    System.out.println(cryptograph);

    String target = RSAUtils.decrypt(cryptograph);// 解密密文
    System.out.println(target);
}

}

推荐阅读:
  1. Spring Cloud Config - RSA简介以及使用RSA加密配置文件
  2. RSA加密

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

rsa 加密 相关

上一篇:System Center 2016 - Operations Manager 部署安装(三)

下一篇:SpringBoot控制层实现单元测试

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》