中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

RSA加密相關

發布時間:2020-07-17 18:08:04 來源:網絡 閱讀:674 作者:201131001027 欄目:開發技術

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);
}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兰坪| 成武县| 松溪县| 武定县| 时尚| 唐海县| 彩票| 舞钢市| 绥化市| 河间市| 铜川市| 旌德县| 巴青县| 张家川| 汉寿县| 日喀则市| 武宁县| 扎囊县| 松原市| 新邵县| 高碑店市| 赤城县| 新河县| 沧源| 西盟| 重庆市| 伊宁县| 景宁| 武山县| 昭通市| 汉中市| 沅陵县| 郯城县| 巴彦淖尔市| 涿州市| 盐边县| 天台县| 黎平县| 余姚市| 泸西县| 吴桥县|