MCPcopy Create free account
hub / github.com/dbunt1tled/python-fast-api / hash_password

Method hash_password

src/core/service/hash_service.py:37–38  ·  view source on GitHub ↗
(self, password: str)

Source from the content-addressed store, hash-verified

35 return uuid.uuid4()
36
37 def hash_password(self, password: str) -> str:
38 return self.hasher.hash(password)
39
40 def verify_password(self, password: str, hashed_password: str) -> bool:
41 try:

Callers 2

signupMethod · 0.80
createMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected