Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPassword (0.22 sec)

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

                        // plain text
                        String password = auth.getPassword();
                        lmHash = new byte[0];
                        ntHash = new byte[(password.length() + 1) * 2];
                        writeString( password, ntHash, 0 );
                    } else {
                        // plain text
                        String password = auth.getPassword();
                        lmHash = new byte[(password.length() + 1) * 2];
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                            throw new RuntimeException("Plain text passwords are disabled");
                        }
                        else {
                            // plain text
                            String password = a.getPassword();
                            this.lmHash = new byte[ ( password.length() + 1 ) * 2];
                            this.ntHash = new byte[0];
                            writeString(password, this.lmHash, 0);
                        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
Back to top