Files
xiaoxia-saas/packages/domain/auth/password_hasher.py
xiaoxia d92909321c
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Successful in 1m14s
CI/CD Pipeline / Check if frontend-only change (push) Has been skipped
CI/CD Pipeline / Validate - Code Quality (push) Failing after 2m12s
CI/CD Pipeline / Validate - Type Check (mypy) (push) Successful in 1m28s
CI/CD Pipeline / Validate - Migration (alembic) (push) Successful in 1m24s
CI/CD Pipeline / Unit Tests (push) Successful in 6m25s
CI/CD Pipeline / Integration Tests (push) Successful in 5m4s
CI/CD Pipeline / Frontend Lint (push) Successful in 45s
CI/CD Pipeline / Frontend Unit Tests (push) Successful in 1m23s
CI/CD Pipeline / PR Build API Image (push) Has been skipped
CI/CD Pipeline / PR Build Web Image (push) Has been skipped
CI/CD Pipeline / PR Build Worker Image (push) Has been skipped
CI/CD Pipeline / Build Staging API Image (push) Successful in 11m44s
CI/CD Pipeline / Build Staging Web Image (push) Successful in 1m17s
CI/CD Pipeline / Build Staging Worker Image (push) Successful in 2m36s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been cancelled
CI/CD Pipeline / Staging API Integration Tests (push) Has been cancelled
CI/CD Pipeline / ACR Image Cleanup (push) Has been cancelled
refactor(#777): 修复Domain层依赖Adapters的DDD违规(4处) (#789)
2026-07-23 23:54:56 +08:00

39 lines
1.0 KiB
Python
Executable File

"""密码哈希服务端口(领域层接口).
定义密码哈希与验证的抽象接口,具体实现由应用层或基础设施层提供。
遵循 DDD 依赖倒置原则:领域层定义端口,外层实现端口。
"""
from __future__ import annotations
from abc import ABC, abstractmethod
from typing import Optional, Tuple
class PasswordHasherPort(ABC):
"""密码哈希服务端口(抽象接口)"""
@abstractmethod
def hash_password(self, password: str) -> str:
"""哈希密码"""
...
@abstractmethod
def verify_password(self, password: str, hashed_password: str) -> bool:
"""验证密码"""
...
@abstractmethod
def needs_rehash(self, hashed_password: str) -> bool:
"""检查哈希是否需要重新计算"""
...
class PasswordValidatorPort(ABC):
"""密码强度验证端口(抽象接口)"""
@abstractmethod
def validate(self, password: str) -> Tuple[bool, Optional[str]]:
"""验证密码强度"""
...