Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PreauthIntegrityService (0.34 sec)

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

                }
            }
        }
    
        /**
         * Constructs a PreauthIntegrityService with default configuration.
         */
        public PreauthIntegrityService() {
            this(new SecureRandom(), DEFAULT_HASH_ALGORITHM, true);
        }
    
        /**
         * Constructs a PreauthIntegrityService with specified configuration.
         *
         * @param secureRandom the secure random generator
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java

        public void testUpdateNonExistentSession() throws CIFSException {
            // With enforcement disabled, this should log a warning but not throw
            PreauthIntegrityService lenientService = new PreauthIntegrityService(secureRandom, PreauthIntegrityService.HASH_ALGO_SHA512, false);
    
            // Should not throw exception
            lenientService.updatePreauthHash("non-existent", "test".getBytes());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11.1K bytes
    - Viewed (0)
Back to top