0

我已经加密了一个文件(plaintext.txt)。然后我需要再次重新加密这个文件。但是,我不确定这是否是因为加密文件不可读。所以我想将它转换为二进制文件或其他可读文件,以便我可以再次重新加密。

首先,我使用此代码(已生成公钥和私钥)加密名为 encrypt.txt 的 .txt 文件。

为了尝试查看它是否可以加密加密文件,现在我想使用相同的代码重新加密“encrypt.txt”文件,以生成重新加密的文件“encrypt2.txt”。

但是,“encrypt2.txt”文件中没有任何信息,这个文件大小也是0kb。

因此,我要问的是,这是否可以用来重新加密?

如果是,怎么会在“encrypt2.txt”中没有信息存在。否则,我该如何重新加密?

感谢您的任何照明!

以下是我的代码。

 public static void main(String[] args) throws Exception {

Security.addProvider(new FlexiCoreProvider());

KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA", "FlexiCore");
Cipher cipher = Cipher.getInstance("RSA", "FlexiCore");

kpg.initialize(1024);
KeyPair keyPair = kpg.generateKeyPair();
PrivateKey privKey = keyPair.getPrivate();
PublicKey pubKey = keyPair.getPublic();

// Encrypt

cipher.init(Cipher.ENCRYPT_MODE, pubKey);

String cleartextFile = "cleartext.txt";
String ciphertextFile = "ciphertextRSA.txt";

FileInputStream fis = new FileInputStream(cleartextFile);
FileOutputStream fos = new FileOutputStream(ciphertextFile);
CipherOutputStream cos = new CipherOutputStream(fos, cipher);

byte[] block = new byte[32];
int i;
while ((i = fis.read(block)) != -1) {
    cos.write(block, 0, i);
}
cos.close();

// Decrypt

String cleartextAgainFile = "cleartextAgainRSA.txt";

cipher.init(Cipher.DECRYPT_MODE, privKey);

fis = new FileInputStream(ciphertextFile);
CipherInputStream cis = new CipherInputStream(fis, cipher);
fos = new FileOutputStream(cleartextAgainFile);

while ((i = cis.read(block)) != -1) {
    fos.write(block, 0, i);
}
fos.close();
}
4

0 回答 0