We have a 15+MB zip file that we need to transfer over HTTPS.

Currently we are transferring the files one at a time unzipped and uncompressed they are around 94+MB.

So zipping them up makes some sense in saving time.

However, I've been "told" that HTTPS will first unzip the file, to check for any risks I guess, before transferring the file.

Is this actually correct and if so what speed ramifications might this have?

Are there better ways to transfer a 15+MB file rather than HTTPS?

The primary question here is whether HTTPS will unzip the file first.

有帮助吗?

解决方案

HTTPS is a secure layer over HTTP. HTTPS does not check content, it only secures the http-part, so that nobody can see the http-data. So, the answer on your question is no: HTTPS will not unzip the file first.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top