Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isEstablished (0.11 sec)

  1. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                    .append(Hexdump.toHexString(ntlmsspFlags, 8))
                    .append(",workstation=")
                    .append(workstation)
                    .append(",isEstablished=")
                    .append(isEstablished)
                    .append(",state=")
                    .append(state)
                    .append(",serverChallenge=");
            if (serverChallenge == null) {
                ret.append("null");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/NtlmContextTest.java

        void testConstructor_withSigning() {
            // Test constructor when signing is enabled
            NtlmContext context = new NtlmContext(mockAuth, true);
            assertNotNull(context);
            assertFalse(context.isEstablished());
            assertNull(context.getServerChallenge());
            assertNull(context.getSigningKey());
            assertNull(context.getNetbiosName());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SpnegoContextTest.java

        }
    
        @Test
        @DisplayName("isEstablished short-circuits on not completed and does not call delegate")
        void testIsEstablishedShortCircuit() {
            SpnegoContext ctx = newContext();
            // The mock setup is unnecessary since we never call it
            assertFalse(ctx.isEstablished());
            verify(this.mechContext, never()).isEstablished();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SSPContext.java

         */
        byte[] getSigningKey() throws CIFSException;
    
        /**
         * Checks whether the security context is established.
         * @return whether the context is established
         */
        boolean isEstablished();
    
        /**
         * Initializes the security context with the given token.
         * @param token the input token bytes
         * @param off offset into the token array
         * @param len length of token data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top