- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getSecurityBlob (0.9 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
return this.commonCapabilities; } /** * Gets the initial security blob for authentication negotiation. * * @return initial security blob */ public byte[] getSecurityBlob() { return this.securityBuffer; } /** * Gets the maximum transaction size supported by the server. * * @return the maxTransactSize */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
// Given byte[] blob = "SecurityBlob".getBytes(); setPrivateField(response, "securityBuffer", blob); // When byte[] result = response.getSecurityBlob(); // Then assertArrayEquals(blob, result); } @Test @DisplayName("Should return max transact size") void testGetMaxTransactSize() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0)