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

溫馨提示×

java怎么實現rsa加密解密文件

小億
151
2023-10-26 02:56:24
欄目: 編程語言

要在Java中實現RSA加密和解密文件,可以使用Java Cryptography Architecture(JCA)提供的RSA算法。以下是一個簡單的示例代碼,用于加密和解密文件。

  1. 導入必要的類和包:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.security.Key;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.Security;
import javax.crypto.Cipher;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
  1. 添加Bouncy Castle作為JCA的提供者:
Security.addProvider(new BouncyCastleProvider());
  1. 生成RSA密鑰對:
KeyPairGenerator keyGen = KeyPairGenerator.getInstance("RSA", "BC");
keyGen.initialize(2048);
KeyPair keyPair = keyGen.generateKeyPair();
PrivateKey privateKey = keyPair.getPrivate();
PublicKey publicKey = keyPair.getPublic();
  1. 加密文件:
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding", "BC");
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
FileInputStream inputFile = new FileInputStream("input.txt");
FileOutputStream outputFile = new FileOutputStream("encrypted.txt");
byte[] inputBytes = new byte[245];
int bytesRead;
while ((bytesRead = inputFile.read(inputBytes)) != -1) {
    byte[] outputBytes = cipher.doFinal(inputBytes, 0, bytesRead);
    outputFile.write(outputBytes);
}
  1. 解密文件:
cipher.init(Cipher.DECRYPT_MODE, privateKey);
inputFile = new FileInputStream("encrypted.txt");
outputFile = new FileOutputStream("decrypted.txt");
byte[] encryptedBytes = new byte[256];
while ((bytesRead = inputFile.read(encryptedBytes)) != -1) {
    byte[] decryptedBytes = cipher.doFinal(encryptedBytes, 0, bytesRead);
    outputFile.write(decryptedBytes);
}

請注意,上述代碼使用Bouncy Castle作為JCA的提供者,并假設輸入文件名為"input.txt",加密后的文件名為"encrypted.txt",解密后的文件名為"decrypted.txt"。此外,還假設輸入文件不超過245個字節,加密后的文件長度為256個字節。您可以根據實際需要進行修改。

0
西乌珠穆沁旗| 崇礼县| 顺义区| 绍兴县| 尤溪县| 寻乌县| 丹阳市| 平顺县| 泽普县| 米易县| 青浦区| 探索| 连城县| 汉源县| 高淳县| 揭阳市| 辽源市| 江北区| 甘德县| 石景山区| 仙游县| 卢氏县| 洪湖市| 习水县| 璧山县| 年辖:市辖区| 绥宁县| 冷水江市| 阜阳市| 馆陶县| 贺州市| 尤溪县| 呼和浩特市| 博罗县| 高邮市| 天峻县| 英山县| 平陆县| 大埔县| 互助| 丹凤县|