Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for supportsIntegrity (0.42 sec)

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

        }
    
        @Test
        @DisplayName("supportsIntegrity delegates to underlying mechanism context")
        void testSupportsIntegrityDelegates() {
            SpnegoContext ctx = newContext();
            when(this.mechContext.supportsIntegrity()).thenReturn(true);
            assertTrue(ctx.supportsIntegrity());
            verify(this.mechContext, times(1)).supportsIntegrity();
        }
    
        @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

         */
        ASN1ObjectIdentifier[] getSupportedMechs();
    
        /**
         * Checks whether this mechanism supports message integrity.
         * @return whether this mechanisms supports integrity
         */
        boolean supportsIntegrity();
    
        /**
         * Calculates a Message Integrity Code (MIC) for the given data.
         * @param data the data to calculate MIC for
         * @return MIC
    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