获取当前配置的加密算法名称(如 AES128)。
(self)
| 59 | self.password = password |
| 60 | |
| 61 | def get_encryption_algorithm(self): |
| 62 | """获取当前配置的加密算法名称(如 AES128)。""" |
| 63 | return self.encryption_algorithm |
| 64 | |
| 65 | def set_encryption_algorithm(self, algorithm): |
| 66 | """指定运行时所需的加密算法。""" |
no outgoing calls
no test coverage detected