Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for lmCompatibility (0.12 sec)

  1. 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)
  2. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                    break;
                }
            } catch (final Exception ex) {
                throw new SmbException("", ex);
            }
            if (log.isTraceEnabled()) {
                log.trace("LM_COMPATIBILITY=" + transport.getContext().getConfig().getLanManCompatibility());
                log.trace(Hexdump.toHexString(this.macSigningKey, 0, this.macSigningKey.length));
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            }
            if ((server.capabilities & CAP_EXTENDED_SECURITY) != CAP_EXTENDED_SECURITY && server.encryptionKeyLength != 8
                    && LM_COMPATIBILITY == 0) {
                throw new SmbException("Unexpected encryption key length: " + server.encryptionKeyLength);
            }
    
            /* Adjust negotiated values */
    
            tconHostName = address.getHostName();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
Back to top