获取插件描述
(self)
| 32 | return [Purpose.DATA_HIDING] |
| 33 | |
| 34 | def get_description(self) -> str: |
| 35 | """获取插件描述""" |
| 36 | return "RandomLSB(随机最低有效位)隐写算法,使用随机序列将数据隐藏在图像像素中,提供更好的安全性" |
| 37 | |
| 38 | def embed_data(self, msg: bytes, msg_filename: Optional[str], |
| 39 | cover: Optional[bytes], cover_filename: Optional[str], |
nothing calls this directly
no outgoing calls
no test coverage detected