我试图从这里收集有关加密/解密的所有可能信息。修补它,一些成功和失败。
但是现在我已经应用了代码及其命中和错过了。一些文件(exe或msi)正在运行,但它们仍然提供有关BadPaddingException的错误。此外,其他一些媒体文件(如mp4,mkv等)仍然停留在99%并且不会超过这个,尽管它们完全接收(只是一些小的字节差异,但磁盘上的大小始终匹配)。
我只想帮助摆脱这两个问题。文件通过套接字编程从1台PC传输到另一台PC
服务器:(已编辑)
DataInputStream dis = new DataInputStream(msock.getInputStream());
DataOutputStream dos = new DataOutputStream(msock.getOutputStream());
String file2dl = dis.readLine(); //2
File file = new File(sharedDirectory.toString() + "\\" + file2dl);
dos.writeLong(file.length()); //3+
//Get file name without extension.
String fileName = Files.getNameWithoutExtension(file2dl);
//AES-128 bit key initialization.
byte[] keyvalue = "AES128BitPasswd".getBytes();
SecretKey key = new SecretKeySpec(keyvalue, "AES");
//Initialize the Cipher.
Cipher encCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
encCipher.init(Cipher.ENCRYPT_MODE, key);
//Get the IV from cipher.
IvParameterSpec spec = null;
try {
spec = encCipher.getParameters().getParameterSpec(IvParameterSpec.class);
} catch (InvalidParameterSpecException ex) {
Logger.getLogger(PeersController.class.getName()).log(Level.SEVERE, null, ex);
}
byte[] iv = spec.getIV();
dos.write(iv, 0, iv.length);
File tempDir = new File(tempDirectory.toString());
//Encryption Mechanism.
try (FileInputStream fis = new FileInputStream(file)) {
try (CipherOutputStream cos = new CipherOutputStream(dos, encCipher);
FileInputStream stream = new FileInputStream(tempDir + "\\" + fileName + ".encr")) {
int read, r;
byte[] buffer = new byte[1024 * 1024];
while ((read = fis.read(buffer)) != -1) {
cos.write(buffer, 0, read);
}
}
}
}
客户:
long len;
int count = 0;
int dflag = 0;
String size;
dos.writeBytes("Download\r\n"); //1+
dos.writeBytes(filename + "\r\n"); //2+
System.out.println("File to fetch: -> " + filename);
len = dis.readLong(); //3
System.out.println("Size of file: -> " + len);
//Get file name without Extension.
String fileName = Files.getNameWithoutExtension(filename);
//Get Initialization Vector from Encryption Cypher.
byte[] iv = new byte[16];
int j = dis.read(iv, 0, iv.length);
final File encrypted = new File(sharedDirectory.toString() + "\\" + fileName + ".encr");
final File decrypted = new File(sharedDirectory.toString() + "\\" + filename);
try (FileOutputStream fos = new FileOutputStream(encrypted)) {
byte[] b = new byte[1024 * 1024];
while (fetching) {
int r = dis.read(b, 0, b.length); //4
count = count + r;
double p = (double) count / len;
double per = new BigDecimal(p).setScale(4, BigDecimal.ROUND_HALF_UP).doubleValue();
fos.write(b, 0, r);
System.out.println("Size Appending: -> " + count);
System.out.println("Percentage: ->" + per);
Platform.runLater(() -> {
pBar.setProgress(per);
});
if (count >= len) {
dflag = 1;
break;
}
}
}
如果已完全接收加密数据
if(dflag == 1) {
//AES-128 bit key initialization.
System.out.println("File completely received");
byte[] keyvalue = "AES128PeerBuLLet".getBytes();
Key key = new SecretKeySpec(keyvalue, "AES");
//Initialization Vector initialized
IvParameterSpec ivParameterSpec = null;
//Cipher Initialization.
Cipher decCipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
try {
decCipher.init(Cipher.DECRYPT_MODE, key, new IvParameterSpec(iv));
} catch (InvalidAlgorithmParameterException ex) {
Logger.getLogger(PeersController.class.getName()).log(Level.SEVERE, null, ex);
}
System.out.println(decCipher.getProvider().getInfo());
//Decryption Mechanism.
try (FileOutputStream stream = new FileOutputStream(decrypted)) {
try (FileInputStream fis = new FileInputStream(encrypted)) {
try (CipherInputStream cis = new CipherInputStream(fis, decCipher)) {
int read, i = 0;
byte[] buffer = new byte[(1024 * 1024) + 16];
while ((read = cis.read(buffer)) != -1) {
stream.write(buffer, 0, read);
i = i + read;
double d = (double) i / len;
double progress = new BigDecimal(d).setScale(3, BigDecimal.ROUND_HALF_UP).doubleValue();
Platform.runLater(() -> {
pBar.setProgress(progress);
progressText.setText("Decrypting..");
});
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
非常感谢任何输入。谢谢。
编辑1:添加了通过流接收的加密和解密文件大小的链接。 Dropbox Link
编辑2:所以最后在三位参与帮助我的人的帮助下解决了问题。我正在审查我的问题的其他解决方案,我遇到了this解决方案,这有助于我深入思考后台发生的实际情况。感谢 Artjom B。的推荐解决方案和 @zaph& @jtahlborn 用于清除关于填充和输入/输出流的错误假设。
答案 0 :(得分:2)
使用填充,PKCS#5或PKCS#7时,加密输出将更大,最多包括一个块大小。见PKCS#7。解密后删除填充。
加密数据会更长,因此必须加以考虑。具体取决于输出的处理方式。如果要进入预先分配的区域(例如内存缓冲区),则必须为缓冲区分配一个块大小(AES为16字节)。如果流式传输通常只是确保发送所有加密字节,则n =它只是输入的长度。所有这些都是依赖于每个实现和系统/语言。
填充字节由加密方法动态创建,因此不需要更改输入。这假设加密方法是添加填充,解密方法是删除填充。
示例1:如果您有1024字节的数据,则加密输出将为1040字节。在解密时,输入数据将是1040字节,输出解密数据将是1024字节。
示例2:如果您有1020字节的数据,则加密输出将为1024字节。在解密时,输入数据将是1024字节,输出解密数据将是1020字节。
答案 1 :(得分:1)
您无法使用FileInputStream来读取您当前正在编写的文件。它不是为了读取正在进行的文件而构建的。
您似乎正在尝试将加密流写入dos
(您不会在服务器代码中包含它的定义)。如果是这样,您应该将其用作CipherOutputStream的基础流。
同样,在客户端,您尝试相同的事情。如果要先将文件写入磁盘,则将整个文件写入磁盘,然后解密。如果你想要解密流,那么将CipherInputStream包装在套接字InputStream周围(大概是dis
?)。
此外,您无法在客户端显示len
的位置,但我假设它是原始数据的长度?如果是,则进度计算不正确,因为加密数据的长度通常与原始数据的长度不同。