def hashing_password(password): try: hashpw = hashlib.sha224() hashpw.update(password) data = hashpw.hexdigest() return data except Exception: return False