- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for supportsEncryption (0.93 sec)
-
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
private long serverStartTime; private NegotiateContextResponse[] negotiateContexts; private byte[] securityBuffer; private DialectVersion selectedDialect; private boolean supportsEncryption; private int selectedCipher = -1; private int selectedPreauthHash = -1; /** * Constructs an SMB2 negotiate response with the given configuration. *
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
void testIsEncryptionSupported() throws Exception { // Given setPrivateField(response, "supportsEncryption", true); // Then assertTrue(response.isEncryptionSupported()); // Given setPrivateField(response, "supportsEncryption", false); // Then assertFalse(response.isEncryptionSupported()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0)