Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isMICAvailable (0.24 sec)

  1. src/test/java/jcifs/smb/SpnegoContextTest.java

        }
    
        @Test
        @DisplayName("isMICAvailable returns false before establishment and does not call delegate")
        void testIsMICAvailableBeforeEstablished() {
            SpnegoContext ctx = newContext();
            // The mock setup is unnecessary since we never call it
            assertFalse(ctx.isMICAvailable());
            verify(this.mechContext, never()).isMICAvailable();
        }
    
        @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)
  2. src/main/java/jcifs/smb/SSPContext.java

        void verifyMIC(byte[] data, byte[] mic) throws CIFSException;
    
        /**
         * Checks whether Message Integrity Code (MIC) is available for use.
         * @return whether MIC can be used
         */
        boolean isMICAvailable();
    
    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