(self)
| 120 | return await acheck_password(raw_password, self.password, setter) |
| 121 | |
| 122 | def set_unusable_password(self): |
| 123 | # Set a value that will never be a valid hash |
| 124 | self.password = make_password(None) |
| 125 | |
| 126 | def has_usable_password(self): |
| 127 | """ |