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

溫馨提示×

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
同心县| 陵水| 富川| 无棣县| 日土县| 临潭县| 甘南县| 高邑县| 岚皋县| 郎溪县| 灵武市| 利津县| 达孜县| 兰溪市| 新化县| 永昌县| 邵阳县| 定西市| 廊坊市| 义乌市| 铅山县| 偃师市| 扶余县| 邹平县| 南城县| 铁力市| 淮南市| 华容县| 盐源县| 九江县| 苍山县| 宜宾市| 分宜县| 余干县| 清新县| 陇南市| 木里| 通道| 紫金县| 浪卡子县| 米泉市|