:py:mod:`security.utils` ======================== .. py:module:: security.utils .. autoapi-nested-parse:: Module for password utilities Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: security.utils.verify_password security.utils.get_password_hash Attributes ~~~~~~~~~~ .. autoapisummary:: security.utils.ALGORITHM security.utils.ACCESS_TOKEN_EXPIRE_MINUTES security.utils.pwd_context .. py:data:: ALGORITHM :annotation: = HS256 .. py:data:: ACCESS_TOKEN_EXPIRE_MINUTES :annotation: = 3000 .. py:data:: pwd_context .. py:function:: verify_password(plain_password, hashed_password) Verifies password against a hash :param plain_password: password to verify :param hashed_password: hash to verify against :return: True if password matches, False otherwise .. py:function:: get_password_hash(password) Returns a hash of the password :param password: password to hash :return: hashed password