压缩数据
(self, data: bytes)
| 41 | ) |
| 42 | |
| 43 | def _compress_data(self, data: bytes) -> bytes: |
| 44 | """压缩数据""" |
| 45 | return gzip.compress(data) |
| 46 | |
| 47 | def extract_data(self, stego_data: bytes, |
| 48 | stego_filename: Optional[str]) -> List: |
nothing calls this directly
no outgoing calls
no test coverage detected