Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSupportedHashAlgorithms (0.29 sec)

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

            assertFalse(preauthService.isHashAlgorithmSupported(0xFF)); // Unsupported
    
            int[] supported = preauthService.getSupportedHashAlgorithms();
            assertNotNull(supported);
            assertEquals(1, supported.length);
            assertEquals(PreauthIntegrityService.HASH_ALGO_SHA512, supported[0]);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/PreauthIntegrityService.java

        }
    
        /**
         * Gets the list of supported hash algorithms.
         *
         * @return array of supported algorithms
         */
        public int[] getSupportedHashAlgorithms() {
            return new int[] { HASH_ALGO_SHA512 };
        }
    
        /**
         * Gets the selected hash algorithm.
         *
         * @return the hash algorithm
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top