Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 564 for mypassword (0.28 sec)

  1. docs_src/extra_models/tutorial002_py310.py

    
    class UserIn(UserBase):
        password: str
    
    
    class UserOut(UserBase):
        pass
    
    
    class UserInDB(UserBase):
        hashed_password: str
    
    
    def fake_password_hasher(raw_password: str):
        return "supersecret" + raw_password
    
    
    def fake_save_user(user_in: UserIn):
        hashed_password = fake_password_hasher(user_in.password)
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 798 bytes
    - Viewed (0)
  2. .ci/init.gradle

          }
          remote(HttpBuildCache) {
            url = buildCacheUrl
            push = buildCachePush
            credentials {
              username = buildCacheCredentials.get("username")
              password = buildCacheCredentials.get("password")
            }
          }
        }
      }
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Nov 13 10:14:04 UTC 2019
    - 3K bytes
    - Viewed (0)
  3. docs_src/security/tutorial007_an_py39.py

        current_password_bytes = credentials.password.encode("utf8")
        correct_password_bytes = b"swordfish"
        is_correct_password = secrets.compare_digest(
            current_password_bytes, correct_password_bytes
        )
        if not (is_correct_username and is_correct_password):
            raise HTTPException(
                status_code=status.HTTP_401_UNAUTHORIZED,
                detail="Incorrect username or password",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/documentMap.dfprop

        #   o user: The database user name. (Required)
        #   o password: The database password. (NotRequired - Default '')
        #
        #; schemaSyncCheckMap = map:{
        #    ; url = jdbc:...
        #    ; schema = EXAMPLEDB
        #    ; user = exampuser
        #    ; password = exampword
        #}
        # - - - - - - - - - -/
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/security/http-basic-auth.md

    Para manejar eso, primero convertimos el `username` y `password` a `bytes` codificΓ‘ndolos con UTF-8.
    
    Luego podemos usar `secrets.compare_digest()` para asegurar que `credentials.username` es `"stanleyjobson"`, y que `credentials.password` es `"swordfish"`.
    
    {* ../../docs_src/security/tutorial007_an_py39.py hl[1,12:24] *}
    
    Esto serΓ­a similar a:
    
    ```Python
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:33:45 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. docs/en/docs/project-generation.md

      - πŸ§ͺ [Playwright](https://playwright.dev) for End-to-End testing.
      - πŸ¦‡ Dark mode support.
    - πŸ‹ [Docker Compose](https://www.docker.com) for development and production.
    - πŸ”’ Secure password hashing by default.
    - πŸ”‘ JWT (JSON Web Token) authentication.
    - πŸ“« Email based password recovery.
    - βœ… Tests with [Pytest](https://pytest.org).
    - πŸ“ž [Traefik](https://traefik.io) as a reverse proxy / load balancer.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Dec 08 13:04:54 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. docs/pt/docs/advanced/security/http-basic-auth.md

    Para lidar com isso, primeiramente nΓ³s convertemos o `username` e o `password` para `bytes`, codificando-os com UTF-8.
    
    EntΓ£o nΓ³s podemos utilizar o `secrets.compare_digest()` para garantir que o `credentials.username` Γ© `"stanleyjobson"`, e que o `credentials.password` Γ© `"swordfish"`.
    
    {* ../../docs_src/security/tutorial007_an_py39.py hl[1,12:24] *}
    
    Isso seria parecido com:
    
    ```Python
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtStatus.java

                "The specified user does not exist.", "The specified network password is not correct.",
                "Logon failure: unknown user name or bad password.", "Logon failure: user account restriction.",
                "Logon failure: account logon time restriction violation.", "Logon failure: user not allowed to log on to this computer.",
                "Logon failure: the specified account password has expired.", "Logon failure: account currently disabled.",
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. internal/config/notify/legacy.go

    			Value: config.FormatBool(cfg.SASL.Enable),
    		},
    		config.KV{
    			Key:   target.KafkaSASLUsername,
    			Value: cfg.SASL.User,
    		},
    		config.KV{
    			Key:   target.KafkaSASLPassword,
    			Value: cfg.SASL.Password,
    		},
    		config.KV{
    			Key:   target.KafkaCompressionCodec,
    			Value: cfg.Producer.Compression,
    		},
    		config.KV{
    			Key:   target.KafkaCompressionLevel,
    			Value: strconv.Itoa(cfg.Producer.CompressionLevel),
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Apr 27 04:30:57 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/security/simple-oauth2.md

    # νŒ¨μŠ€μ›Œλ“œμ™€ Bearerλ₯Ό μ΄μš©ν•œ κ°„λ‹¨ν•œ OAuth2
    
    이제 이전 μž₯μ—μ„œ λΉŒλ“œν•˜κ³  λˆ„λ½λœ 뢀뢄을 μΆ”κ°€ν•˜μ—¬ μ™„μ „ν•œ λ³΄μ•ˆ 흐름을 갖도둝 ν•˜κ² μŠ΅λ‹ˆλ‹€.
    
    ## `username`와 `password` μ–»κΈ°
    
    **FastAPI** λ³΄μ•ˆ μœ ν‹Έλ¦¬ν‹°λ₯Ό μ‚¬μš©ν•˜μ—¬ `username` 및 `password`λ₯Ό κ°€μ Έμ˜¬ κ²ƒμž…λ‹ˆλ‹€.
    
    OAuth2λŠ” (μš°λ¦¬κ°€ μ‚¬μš©ν•˜κ³  μžˆλŠ”) "νŒ¨μŠ€μ›Œλ“œ ν”Œλ‘œμš°"을 μ‚¬μš©ν•  λ•Œ ν΄λΌμ΄μ–ΈνŠΈ/μœ μ €κ°€ `username` 및 `password` ν•„λ“œλ₯Ό 폼 λ°μ΄ν„°λ‘œ 보내야 함을 μ§€μ •ν•©λ‹ˆλ‹€.
    
    그리고 μ‚¬μ–‘μ—λŠ” ν•„λ“œμ˜ 이름을 κ·Έλ ‡κ²Œ μ§€μ •ν•΄μ•Ό ν•œλ‹€κ³  λ‚˜μ™€ μžˆμŠ΅λ‹ˆλ‹€. λ”°λΌμ„œ `user-name` λ˜λŠ” `email`은 μž‘λ™ν•˜μ§€ μ•ŠμŠ΅λ‹ˆλ‹€.
    
    ν•˜μ§€λ§Œ κ±±μ •ν•˜μ§€ μ•Šμ•„λ„ λ©λ‹ˆλ‹€. ν”„λŸ°νŠΈμ—”λ“œμ—μ„œ μ΅œμ’… μ‚¬μš©μžμ—κ²Œ μ›ν•˜λŠ” λŒ€λ‘œ ν‘œμ‹œν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    
    그리고 λ°μ΄ν„°λ² μ΄μŠ€ λͺ¨λΈμ€ μ›ν•˜λŠ” λ‹€λ₯Έ 이름을 μ‚¬μš©ν•  수 μžˆμŠ΅λ‹ˆλ‹€.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Feb 15 11:19:12 UTC 2025
    - 10.8K bytes
    - Viewed (0)
Back to top