- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getSelectedCipher (0.11 sec)
-
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
void testGetSelectedCipher() throws Exception { // Given setPrivateField(response, "selectedCipher", EncryptionNegotiateContext.CIPHER_AES128_GCM); // When int cipher = response.getSelectedCipher(); // Then assertEquals(EncryptionNegotiateContext.CIPHER_AES128_GCM, cipher); } @Test @DisplayName("Should return selected preauth hash")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
return this.selectedDialect; } /** * Gets the encryption cipher selected for SMB3 encryption. * * @return the selectedCipher */ public int getSelectedCipher() { return this.selectedCipher; } /** * Gets the pre-authentication integrity hash algorithm selected for SMB 3.1.1. * * @return the selectedPreauthHash */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0)