Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Rashed (0.14 sec)

  1. docs/zh/docs/tutorial/sql-databases.md

    ```Python hl_lines="18-24  31-36"
    {!../../../docs_src/sql_databases/sql_app/crud.py!}
    ```
    
    !!! tip
        SQLAlchemy 模型`User`包含一个`hashed_password`,它应该是一个包含散列的安全密码。
    
        但由于 API 客户端提供的是原始密码,因此您需要将其提取并在应用程序中生成散列密码。
    
        然后将hashed_password参数与要保存的值一起传递。
    
    !!! warning
        此示例不安全,密码未经过哈希处理。
    
        在现实生活中的应用程序中,您需要对密码进行哈希处理,并且永远不要以明文形式保存它们。
    
        有关更多详细信息,请返回教程中的安全部分。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/sql-databases.md

    ```Python hl_lines="18-24  31-36"
    {!../../../docs_src/sql_databases/sql_app/crud.py!}
    ```
    
    !!! tip
        🇸🇲 🏷 `User` 🔌 `hashed_password` 👈 🔜 🔌 🔐 #️⃣ ⏬ 🔐.
    
        ✋️ ⚫️❔ 🛠️ 👩‍💻 🚚 ⏮️ 🔐, 👆 💪 ⚗ ⚫️ & 🏗 #️⃣ 🔐 👆 🈸.
    
         & ⤴️ 🚶‍♀️ `hashed_password` ❌ ⏮️ 💲 🖊.
    
    !!! warning
        👉 🖼 🚫 🔐, 🔐 🚫#️⃣.
    
        🎰 👨‍❤‍👨 🈸 👆 🔜 💪 #️⃣ 🔐 & 🙅 🖊 👫 🔢.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  3. docs/en/docs/tutorial/sql-databases.md

    !!! tip
        The SQLAlchemy model for `User` contains a `hashed_password` that should contain a secure hashed version of the password.
    
        But as what the API client provides is the original password, you need to extract it and generate the hashed password in your application.
    
        And then pass the `hashed_password` argument with the value to save.
    
    !!! warning
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
Back to top