(plain_password, hashed_password)
| 55 | |
| 56 | |
| 57 | def verify_password(plain_password, hashed_password): |
| 58 | return password_hash.verify(plain_password, hashed_password) |
| 59 | |
| 60 | |
| 61 | def get_password_hash(password): |
no outgoing calls
no test coverage detected
searching dependent graphs…