Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for apiKey (0.03 sec)

  1. fastapi/openapi/models.py

        trace: Optional[Operation] = None
        servers: Optional[list[Server]] = None
        parameters: Optional[list[Union[Parameter, Reference]]] = None
    
    
    class SecuritySchemeType(Enum):
        apiKey = "apiKey"
        http = "http"
        oauth2 = "oauth2"
        openIdConnect = "openIdConnect"
    
    
    class SecurityBase(BaseModelWithConfig):
        type_: SecuritySchemeType = Field(alias="type")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java

            // When
            byte[] appKey = Smb3KeyDerivation.dervieApplicationKey(dialect, sessionKey, preauthIntegrity);
    
            // Then
            assertNotNull(appKey, "Application key should not be null");
            assertEquals(16, appKey.length, "Application key should be 16 bytes");
            assertFalse(Arrays.equals(sessionKey, appKey), "Application key should be different from session key");
        }
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top