(plain_password: str, md5_password: str)
| 34 | return m.hexdigest() |
| 35 | |
| 36 | def verify_md5pwd(plain_password: str, md5_password: str) -> bool: |
| 37 | return md5pwd(plain_password) == md5_password |
| 38 | |
| 39 | def default_pwd() -> str: |
| 40 | return settings.DEFAULT_PWD |
no test coverage detected