Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 921 - 930 of 1,023 for bhash (0.02 seconds)

  1. docs/zh-hant/docs/tutorial/security/oauth2-jwt.md

    使用 `pwdlib`,你甚至可以把它設定為能讀取由 **Django**、**Flask** 的安全外掛或其他許多系統所建立的密碼。
    
    例如,你可以讓 Django 應用與 FastAPI 應用共用同一個資料庫中的資料。或者逐步遷移一個 Django 應用,同樣使用該資料庫。
    
    而你的使用者可以同時從 Django 應用或 **FastAPI** 應用登入。
    
    ///
    
    ## 雜湊與驗證密碼 { #hash-and-verify-the-passwords }
    
    從 `pwdlib` 匯入我們需要的工具。
    
    用建議設定建立一個 PasswordHash 執行個體——它會用於雜湊與驗證密碼。
    
    /// tip | 提示
    
    pwdlib 也支援 bcrypt 雜湊演算法,但不包含傳統(legacy)演算法——若需要處理過時的雜湊,建議使用 passlib 函式庫。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/security/oauth2-jwt.md

    例如,你可以在数据库中让一个 Django 应用和一个 FastAPI 应用共享同一份数据。或者在使用同一个数据库的前提下,逐步迁移一个 Django 应用到 FastAPI。
    
    同时,你的用户既可以从 Django 应用登录,也可以从 **FastAPI** 应用登录。
    
    ///
    
    ## 哈希并校验密码 { #hash-and-verify-the-passwords }
    
    从 `pwdlib` 导入所需工具。
    
    用推荐设置创建一个 PasswordHash 实例——它将用于哈希与校验密码。
    
    /// tip | 提示
    
    pwdlib 也支持 bcrypt 哈希算法,但不包含遗留算法——如果需要处理过时的哈希,建议使用 passlib 库。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. api/go1.14.txt

    pkg go/doc, type Type struct, Examples []*Example
    pkg hash/maphash, func MakeSeed() Seed
    pkg hash/maphash, method (*Hash) BlockSize() int
    pkg hash/maphash, method (*Hash) Reset()
    pkg hash/maphash, method (*Hash) Seed() Seed
    pkg hash/maphash, method (*Hash) SetSeed(Seed)
    pkg hash/maphash, method (*Hash) Size() int
    pkg hash/maphash, method (*Hash) Sum([]uint8) []uint8
    pkg hash/maphash, method (*Hash) Sum64() uint64
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Click Count (0)
  4. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

                        && Objects.equals(getGoal(), other.getGoal());
            }
    
            return false;
        }
    
        /** {@inheritDoc} */
        @Override
        public int hashCode() {
            return Objects.hash(getGoal(), getPluginDescriptor());
        }
    
        /**
         * @return the invocation lifecycle of the Mojo
         */
        public String getExecuteLifecycle() {
            return executeLifecycle;
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 21.7K bytes
    - Click Count (0)
  5. docs/bucket/replication/setup_ilm_expiry_replication.sh

    #!/usr/bin/env bash
    
    set -x
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		for site in sitea siteb sitec sited; do
    			echo "$site server logs ========="
    			cat "/tmp/${site}_1.log"
    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Sep 06 09:42:21 GMT 2024
    - 12.8K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/sql-databases.md

    /// tip
    
    This is how you would handle **passwords**. Receive them, but don't return them in the API.
    
    You would also **hash** the values of the passwords before storing them, **never store them in plain text**.
    
    ///
    
    The fields of `HeroCreate` are:
    
    * `name`
    * `age`
    * `secret_name`
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/query-params-str-validations.md

    Wir konvertieren dieses iterierbare Objekt mit `list(data.items())` in eine richtige `list`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/sql-databases.md

    Wir können einen Helden **aktualisieren**. Dafür verwenden wir eine HTTP-`PATCH`-Operation.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  9. docs/ko/docs/tutorial/security/oauth2-jwt.md

    따라서 예를 들어, FastAPI 애플리케이션과 Django 애플리케이션이 같은 데이터베이스에서 동일한 데이터를 공유할 수 있습니다. 또는 같은 데이터베이스를 사용하면서 Django 애플리케이션을 점진적으로 마이그레이션할 수도 있습니다.
    
    그리고 사용자는 Django 앱 또는 **FastAPI** 앱에서 동시에 로그인할 수 있습니다.
    
    ///
    
    ## 패스워드 해시 및 검증 { #hash-and-verify-the-passwords }
    
    `pwdlib`에서 필요한 도구를 임포트합니다.
    
    권장 설정으로 PasswordHash 인스턴스를 생성합니다. 이는 패스워드를 해싱하고 검증하는 데 사용됩니다.
    
    /// tip | 팁
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 13K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/bigger-applications.md

    * Ve `app/internal/admin.py` dosyası başka bir submodule’dür: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    Aynı dosya yapısı, yorumlarla birlikte:
    
    ```bash
    .
    ├── app                  # "app" bir Python package'idir
    │   ├── __init__.py      # bu dosya, "app"i bir "Python package" yapar
    │   ├── main.py          # "main" module'ü, örn. import app.main
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 20.3K bytes
    - Click Count (0)
Back to Top