Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lmCompatibility (0.05 sec)

  1. src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java

            // Set default for tests
            jcifs.smb1.Config.setProperty("jcifs.smb1.smb.lmCompatibility", "3");
        }
    
        @AfterAll
        static void tearDownClass() {
            // Restore original property
            if (originalLmCompatibility != null) {
                jcifs.smb1.Config.setProperty("jcifs.smb1.smb.lmCompatibility", originalLmCompatibility);
            } else {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SigningDigest.java

                    break;
                }
            } catch (final Exception ex) {
                throw new SmbException("", ex);
            }
            if (LogStream.level >= 5) {
                log.println("LM_COMPATIBILITY=" + LM_COMPATIBILITY);
                Hexdump.hexdump(log, macSigningKey, 0, macSigningKey.length);
            }
        }
    
        /**
         * Updates the digest with the specified data.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.9K bytes
    - Viewed (0)
Back to top