MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / verify_password

Function verify_password

backend/app/api/auth.py:56–57  ·  view source on GitHub ↗
(plain_password, hashed_password)

Source from the content-addressed store, hash-verified

54}
55
56def verify_password(plain_password, hashed_password):
57 return pwd_context.verify(plain_password, hashed_password)
58
59def get_password_hash(password):
60 return pwd_context.hash(password)

Callers 1

authenticate_userFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected