Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSupportedMechs (0.06 sec)

  1. src/main/java/jcifs/smb/SSPContext.java

         */
        int getFlags();
    
        /**
         * Gets the array of supported security mechanism OIDs.
         * @return array of supported mechanism OIDs
         */
        ASN1ObjectIdentifier[] getSupportedMechs();
    
        /**
         * Checks whether this mechanism supports message integrity.
         * @return whether this mechanisms supports integrity
         */
        boolean supportsIntegrity();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SpnegoContextTest.java

            return new SpnegoContext(this.config, this.mechContext, this.mechs);
        }
    
        @Test
        @DisplayName("getSupportedMechs returns SPNEGO OID")
        void testGetSupportedMechs() {
            SpnegoContext ctx = newContext();
            ASN1ObjectIdentifier[] supported = ctx.getSupportedMechs();
            assertNotNull(supported);
            assertEquals(1, supported.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top