Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for passwordLength (0.07 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

        public String toString () {
            String result = new String(
                "SmbComTreeConnectAndX[" + super.toString() + ",disconnectTid=" + this.disconnectTid + ",passwordLength=" + this.passwordLength
                        + ",password=" + Hexdump.toHexString(this.password, this.passwordLength, 0) + ",path=" + this.path + ",service=" + this.service
                        + "]");
            return result;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

            String result = new String( "SmbComTreeConnectAndX[" +
                super.toString() +
                ",disconnectTid=" + disconnectTid +
                ",passwordLength=" + passwordLength +
                ",password=" + Hexdump.toHexString( password, passwordLength, 0 ) +
                ",path=" + path +
                ",service=" + service + "]" );
            return result;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmUtil.java

            byte[] passwordBytes = Strings.getOEMBytes(password, tc.getConfig());
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if ( passwordLength > 14 ) {
                passwordLength = 14;
            }
            System.arraycopy(passwordBytes, 0, p14, 0, passwordLength);
            NtlmUtil.E(p14, NtlmUtil.S8, p21);
            NtlmUtil.E(p21, challenge, p24);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
Back to top