从隐写数据中提取消息
(self, stego_data: bytes, stego_filename: Optional[str],
orig_sig_data: Optional[bytes] = None)
| 61 | raise NotImplementedError |
| 62 | |
| 63 | def extract_data(self, stego_data: bytes, stego_filename: Optional[str], |
| 64 | orig_sig_data: Optional[bytes] = None) -> bytes: |
| 65 | """从隐写数据中提取消息""" |
| 66 | raise NotImplementedError |
| 67 | |
| 68 | def generate_signature(self) -> bytes: |
| 69 | """生成签名数据(用于水印)""" |
no outgoing calls
no test coverage detected