设置用于加密或水印操作的凭证密码。
(self, password)
| 55 | return self.password |
| 56 | |
| 57 | def set_password(self, password): |
| 58 | """设置用于加密或水印操作的凭证密码。""" |
| 59 | self.password = password |
| 60 | |
| 61 | def get_encryption_algorithm(self): |
| 62 | """获取当前配置的加密算法名称(如 AES128)。""" |
nothing calls this directly
no outgoing calls
no test coverage detected