Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for session_id (0.06 sec)

  1. docs/en/docs/release-notes.md

    ```python
    from typing import Annotated
    
    from fastapi import Cookie, FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Cookies(BaseModel):
        session_id: str
        fatebook_tracker: str | None = None
        googall_tracker: str | None = None
    
    
    @app.get("/items/")
    async def read_items(cookies: Annotated[Cookies, Cookie()]):
        return cookies
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  2. lib/fips140/v1.0.0.zip

    Direction{[]byte{'A'}, []byte{'C'}, []byte{'E'}} } func Keys[Hash fips140.Hash](hash func() Hash, d Direction, K, H, sessionID []byte, ivKeyLen, keyLen, macKeyLen int, ) (ivKey, key, macKey []byte) { h := hash() generateKeyMaterial := func(tag []byte, length int) []byte { var key []byte for len(key) < length { h.Reset() h.Write(K) h.Write(H) if len(key) == 0 { h.Write(tag) h.Write(sessionID) } else { h.Write(key) } key = h.Sum(key) } return key[:length] } ivKey = generateKeyMaterial(d.ivTag, ivKeyLen)...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top