Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/smb1/smb1/SigningDigest.java

                    break;
                }
            } catch( Exception ex ) {
                throw new SmbException( "", ex );
            }
            if( log.level >= 5 ) {
                log.println( "LM_COMPATIBILITY=" + LM_COMPATIBILITY );
                Hexdump.hexdump( log, macSigningKey, 0, macSigningKey.length );
            }
        }
    
        public void update( byte[] input, int offset, int len ) {
            if( log.level >= 5 ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

                    break;
                }
            }
            catch ( 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 10.6K 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 Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
Back to top