Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for NegotiateContextRequest (0.25 sec)

  1. src/test/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContextTest.java

        class InterfaceImplementationTests {
    
            @Test
            @DisplayName("Should implement NegotiateContextRequest interface")
            void testImplementsNegotiateContextRequest() {
                PreauthIntegrityNegotiateContext context = new PreauthIntegrityNegotiateContext();
    
                assertTrue(context instanceof NegotiateContextRequest);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 34K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                log.error("Server returned no hash selection");
                return false;
            }
    
            PreauthIntegrityNegotiateContext rpc = null;
            for (final NegotiateContextRequest rnc : req.getNegotiateContexts()) {
                if (rnc instanceof PreauthIntegrityNegotiateContext) {
                    rpc = (PreauthIntegrityNegotiateContext) rnc;
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
Back to top