Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 251 - 260 of 639 for password2 (0.13 seconds)

  1. docs_src/response_model/tutorial003_01_py310.py

    from pydantic import BaseModel, EmailStr
    
    app = FastAPI()
    
    
    class BaseUser(BaseModel):
        username: str
        email: EmailStr
        full_name: str | None = None
    
    
    class UserIn(BaseUser):
        password: str
    
    
    @app.post("/user/")
    async def create_user(user: UserIn) -> BaseUser:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 07 13:45:48 GMT 2023
    - 317 bytes
    - Click Count (0)
  2. docs/ja/docs/tutorial/security/oauth2-jwt.md

    詳細は[PyJWT Installation docs](https://pyjwt.readthedocs.io/en/latest/installation.html)で確認できます。
    
    ///
    
    ## パスワードのハッシュ化 { #password-hashing }
    
    「ハッシュ化」とは、あるコンテンツ(ここではパスワード)を、規則性のないバイト列(単なる文字列)に変換することです。
    
    特徴として、全く同じ内容(全く同じパスワード)を渡すと、全く同じ規則性のないバイト列に変換されます。
    
    しかし、規則性のないバイト列から元のパスワードに戻すことはできません。
    
    ### パスワードのハッシュ化を使う理由 { #why-use-password-hashing }
    
    データベースが盗まれても、ユーザーの平文のパスワードは盗まれず、ハッシュ値だけが盗まれます。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 14.6K bytes
    - Click Count (1)
  3. docs_src/response_model/tutorial002_py310.py

    from fastapi import FastAPI
    from pydantic import BaseModel, EmailStr
    
    app = FastAPI()
    
    
    class UserIn(BaseModel):
        username: str
        password: str
        email: EmailStr
        full_name: str | None = None
    
    
    # Don't do this in production!
    @app.post("/user/")
    async def create_user(user: UserIn) -> UserIn:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 07 13:45:48 GMT 2023
    - 318 bytes
    - Click Count (0)
  4. docs/ru/llm-prompt.md

    * utilize (resources): использовать
    * сontent: содержимое (or `контент`)
    * raise exception: вызвать исключение (also possible to use `сгенерировать исключение` or `выбросить исключение`)
    * password flow: password flow (clarify as `аутентификация по паролю` if needed)
    * tutorial: руководство (or `учебник`)
    * too long; didn't read: слишком длинно; не читал
    * proxy with a stripped path prefix: прокси с функцией удаления префикса пути
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Jan 22 07:07:05 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  5. docs_src/response_model/tutorial003_py310.py

    from typing import Any
    
    from fastapi import FastAPI
    from pydantic import BaseModel, EmailStr
    
    app = FastAPI()
    
    
    class UserIn(BaseModel):
        username: str
        password: str
        email: EmailStr
        full_name: str | None = None
    
    
    class UserOut(BaseModel):
        username: str
        email: EmailStr
        full_name: str | None = None
    
    
    @app.post("/user/", response_model=UserOut)
    async def create_user(user: UserIn) -> Any:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 07 13:45:48 GMT 2023
    - 431 bytes
    - Click Count (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

    to take advantage of sweet Kotlin features.
    
    #### Credentials.basic()
    
    The username and password parameters to `Credentials.basic()` are now non-null strings. In OkHttp
    3.x, null would yield a username or password of "null".
    
    #### HttpUrl.queryParameterValues()
    
    The return type of `HttpUrl.queryParameterValues()` is `List<String?>`. Lists that may contain null
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Click Count (0)
  7. maven-tests/mvnw

    [ "${MVNW_VERBOSE-}" != true ] || __MVNW_QUIET_WGET='' __MVNW_QUIET_CURL='' __MVNW_QUIET_UNZIP='' __MVNW_QUIET_TAR=v
    
    # normalize http auth
    case "${MVNW_PASSWORD:+has-password}" in
    '') MVNW_USERNAME='' MVNW_PASSWORD='' ;;
    has-password) [ -n "${MVNW_USERNAME-}" ] || MVNW_USERNAME='' MVNW_PASSWORD='' ;;
    esac
    
    if [ -z "${MVNW_USERNAME-}" ] && command -v wget >/dev/null; then
      verbose "Found wget ... using wget"
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Sep 25 18:22:49 GMT 2025
    - 10.4K bytes
    - Click Count (0)
  8. src/main/config/es/fess_config_file_authentication.json

                "type" : "keyword"
              },
              "hostname" : {
                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
              "port" : {
                "type" : "integer"
              },
              "protocolScheme" : {
                "type" : "keyword"
              },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/request-forms.md

    创建表单参数的方式与 `Body` 或 `Query` 相同:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[9] *}
    
    例如,在 OAuth2 规范的一种使用方式(称为“密码流”)中,要求将 `username` 和 `password` 作为表单字段发送。
    
    <dfn title="规范">规范</dfn>要求这些字段必须精确命名为 `username` 和 `password`,并且作为表单字段发送,而不是 JSON。
    
    使用 `Form` 可以像使用 `Body`(以及 `Query`、`Path`、`Cookie`)一样声明相同的配置,包括校验、示例、别名(例如将 `username` 写成 `user-name`)等。
    
    /// info
    
    `Form` 是直接继承自 `Body` 的类。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  10. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                        }
                        user = auth.getUserName();
                        password = new String(auth.getPassword());
                    } catch (final Exception ex) {}
                }
                final Type2Message type2 = (Type2Message) message;
                message = new Type3Message(type2, password, domain, user, Type3Message.getDefaultWorkstation(), 0);
            }
            return message;
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 22.1K bytes
    - Click Count (0)
Back to Top