从隐写数据中提取消息文件名
(self, stego_data: bytes,
stego_filename: Optional[str])
| 56 | raise NotImplementedError |
| 57 | |
| 58 | def extract_msg_filename(self, stego_data: bytes, |
| 59 | stego_filename: Optional[str]) -> str: |
| 60 | """从隐写数据中提取消息文件名""" |
| 61 | raise NotImplementedError |
| 62 | |
| 63 | def extract_data(self, stego_data: bytes, stego_filename: Optional[str], |
| 64 | orig_sig_data: Optional[bytes] = None) -> bytes: |
no outgoing calls
no test coverage detected