- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for supportsIntegrity (0.42 sec)
-
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) -
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)