Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 80 (0.13 sec)

  1. docs/zh/docs/tutorial/security/simple-oauth2.md

    每次传入完全相同的内容(比如,完全相同的密码)时,得到的都是完全相同的乱码。
    
    但这个乱码无法转换回传入的密码。
    
    ##### 为什么使用密码哈希
    
    原因很简单,假如数据库被盗,窃贼无法获取用户的明文密码,得到的只是哈希值。
    
    这样一来,窃贼就无法在其它应用中使用窃取的密码,要知道,很多用户在所有系统中都使用相同的密码,风险超大。
    
    ```Python hl_lines="80-83"
    {!../../../docs_src/security/tutorial003.py!}
    ```
    
    #### 关于 `**user_dict`
    
    `UserInDB(**user_dict)` 是指:
    
    *直接把 `user_dict` 的键与值当作关键字参数传递,等效于:*
    
    ```Python
    UserInDB(
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/security/simple-oauth2.md

    ##### ⚫️❔ ⚙️ 🔐 🔁
    
    🚥 👆 💽 📎, 🧙‍♀ 🏆 🚫 ✔️ 👆 👩‍💻' 🔢 🔐, 🕴#️⃣.
    
    , 🧙‍♀ 🏆 🚫 💪 🔄 ⚙️ 👈 🎏 🔐 ➕1️⃣ ⚙️ (📚 👩‍💻 ⚙️ 🎏 🔐 🌐, 👉 🔜 ⚠).
    
    === "🐍 3️⃣.6️⃣ & 🔛"
    
        ```Python hl_lines="80-83"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ & 🔛"
    
        ```Python hl_lines="78-81"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/security/simple-oauth2.md

    ##### 패스워드 해싱을 사용해야 하는 이유
    
    데이터베이스가 유출된 경우 해커는 사용자의 일반 텍스트 암호가 아니라 해시만 갖게 됩니다.
    
    따라서 해커는 다른 시스템에서 동일한 암호를 사용하려고 시도할 수 없습니다(많은 사용자가 모든 곳에서 동일한 암호를 사용하므로 이는 위험할 수 있습니다).
    
    === "P파이썬 3.7 이상"
    
        ```Python hl_lines="80-83"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    === "파이썬 3.10 이상"
    
        ```Python hl_lines="78-81"
        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 22:37:23 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/simple-oauth2.md

        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
        ```Python hl_lines="80-83"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    #### Über `**user_dict`
    
    `UserInDB(**user_dict)` bedeutet:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:08:44 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/simple-oauth2.md

        {!> ../../../docs_src/security/tutorial003_py310.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="80-83"
        {!> ../../../docs_src/security/tutorial003.py!}
        ```
    
    #### About `**user_dict`
    
    `UserInDB(**user_dict)` means:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top