亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

Java RSA算法怎么實現

小億
94
2023-10-26 02:28:38
欄目: 編程語言

Java中可以使用Java內置的加密庫javax.crypto來實現RSA算法。

下面是一個簡單的RSA加密和解密的示例代碼:

import javax.crypto.Cipher;
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.util.Base64;

public class RSAExample {

    public static void main(String[] args) throws Exception {
        String originalText = "Hello, RSA!";

        // 生成公私密鑰對
        KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
        keyPairGenerator.initialize(2048);
        KeyPair keyPair = keyPairGenerator.generateKeyPair();

        PublicKey publicKey = keyPair.getPublic();
        PrivateKey privateKey = keyPair.getPrivate();

        // 使用公鑰加密數據
        byte[] encryptedBytes = encrypt(originalText, publicKey);

        // 使用私鑰解密數據
        String decryptedText = decrypt(encryptedBytes, privateKey);

        System.out.println("Original Text: " + originalText);
        System.out.println("Encrypted Text: " + Base64.getEncoder().encodeToString(encryptedBytes));
        System.out.println("Decrypted Text: " + decryptedText);
    }

    public static byte[] encrypt(String text, PublicKey publicKey) throws Exception {
        Cipher cipher = Cipher.getInstance("RSA");
        cipher.init(Cipher.ENCRYPT_MODE, publicKey);
        return cipher.doFinal(text.getBytes());
    }

    public static String decrypt(byte[] encryptedBytes, PrivateKey privateKey) throws Exception {
        Cipher cipher = Cipher.getInstance("RSA");
        cipher.init(Cipher.DECRYPT_MODE, privateKey);
        byte[] decryptedBytes = cipher.doFinal(encryptedBytes);
        return new String(decryptedBytes);
    }
}

在這個示例代碼中,首先生成一個2048位的RSA公私鑰對,然后使用公鑰加密原始文本,再使用私鑰解密加密后的數據。最后輸出原始文本、加密后的文本和解密后的文本。

需要注意的是,這里使用了Base64編碼來將加密后的文本以字符串的形式輸出,方便觀察。在實際應用中,可以根據需要選擇合適的方式來存儲和傳輸加密后的數據。

0
德格县| 阜南县| 洛南县| 元氏县| 四子王旗| 宣武区| 晋城| 江安县| 江山市| 弥渡县| 阿拉善左旗| 隆德县| 西华县| 武乡县| 靖宇县| 无锡市| 焦作市| 民权县| 信宜市| 增城市| 永川市| 古浪县| 甘洛县| 麟游县| 镇雄县| 中山市| 淳化县| 广州市| 平湖市| 科技| 西畴县| 乐昌市| 土默特右旗| 巢湖市| 民丰县| 汉川市| 陈巴尔虎旗| 富平县| 青浦区| 邻水| 西安市|