XRyZ's picture
Upload folder using huggingface_hub
01c6926 verified
Raw
History Blame Contribute Delete
228 Bytes
from abc import ABC, abstractmethod
class PasswordService(ABC):
@abstractmethod
def hash(self, password: str) -> str:
...
@abstractmethod
def verify(self, plain: str, hashed: str) -> bool:
...