mirror of
				https://github.com/fastapi-users/fastapi-users.git
				synced 2025-10-31 17:38:30 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			396 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			396 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from typing import Tuple
 | |
| 
 | |
| from passlib.context import CryptContext
 | |
| 
 | |
| pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
 | |
| 
 | |
| 
 | |
| def verify_and_update_password(
 | |
|     plain_password: str, hashed_password: str
 | |
| ) -> Tuple[bool, str]:
 | |
|     return pwd_context.verify_and_update(plain_password, hashed_password)
 | |
| 
 | |
| 
 | |
| def get_password_hash(password: str) -> str:
 | |
|     return pwd_context.hash(password)
 | 
