RFC 1952 tells us that GZIP member header stores information about
- MTIME (if the compressed data did not come from a file, MTIME is set to the time at which compression started)
- the Operation System (on which compression took place)
- FNAME and FCOMMENT (file's name and comment)
and so forth per https://datatracker.ietf.org/doc/html/rfc1952#page-6.
I tend to think we never want this information to be exposed.
In addition to that, there's another aspect I'd like to mention, different, or even the same, implementations of the GZip compressor can 'easily' produce non-deterministic output for the same input data (which isn't that great as well).
RFC 1952 tells us that GZIP member header stores information about
and so forth per https://datatracker.ietf.org/doc/html/rfc1952#page-6.
I tend to think we never want this information to be exposed.
In addition to that, there's another aspect I'd like to mention, different, or even the same, implementations of the GZip compressor can 'easily' produce non-deterministic output for the same input data (which isn't that great as well).