cryptotest.py 272 B

12345678
  1. from passlib.context import CryptContext
  2. SECRET_KEY = "df2f77bd544240801a048bd4293afd8eeb7fff3cb7050e42c791db4b83ebadcd"
  3. ALGORITHM = "HS256"
  4. ACCESS_TOKEN_EXPIRE_DAYS = 5
  5. pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
  6. print(pwd_context.hash('123456'))