3

我正在破坏 java 中一个非常简单的 RSA 加密。但输出文件似乎是空的。如果我在没有 CipherOutputStream 的情况下尝试它,同样的事情会起作用。我可以看到循环中的每个写入周期都没有效果。任何线索...谢谢。

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
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 javax.crypto.CipherInputStream;
import javax.crypto.CipherOutputStream;


public class ExampleRSA {
    private static String VIDEO_SOURCE_FILE = "C:/Users/ggoldman/Desktop/Video/inputVideo.dv";
    private static String EncryptedFile = "C:/Users/ggoldman/Desktop/Video/encVideo.dv";
    private static File decfile = new File("C:/Users/ggoldman/Desktop/Video/decVideo.dv");
    private static File incfile = new File(EncryptedFile);
    private static File sourceMedia = new File(VIDEO_SOURCE_FILE);


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


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

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

        // Encrypt

        cipher.init(Cipher.ENCRYPT_MODE, pubKey);


        FileInputStream fis = new FileInputStream(sourceMedia);
        FileOutputStream fos = new FileOutputStream(incfile);
        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();
}
4

1 回答 1

2

您不能仅使用 RSA 加密和解密整个文件(至少,如果它们的字符串不止一个小字符串,则不能)。RSA算法只能加密单个块,做整个文件比较慢。

您可以使用 3DES 或 AES 加密文件,然后使用预期收件人的 RSA 公钥加密 AES 密钥。

于 2012-11-26T18:51:49.393 回答