Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for areHashesExternal (0.2 sec)

  1. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            if ( super.equals(obj) ) {
                if ( ! ( obj instanceof NtlmPasswordAuthentication ) ) {
                    return !this.areHashesExternal();
                }
                NtlmPasswordAuthentication ntlm = (NtlmPasswordAuthentication) obj;
                if ( this.areHashesExternal() && ntlm.areHashesExternal() ) {
                    return Arrays.equals(this.ansiHash, ntlm.ansiHash) && Arrays.equals(this.unicodeHash, ntlm.unicodeHash);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

        private static boolean isExternalAuth ( NtlmPasswordAuthenticator pwAuth ) {
            return pwAuth instanceof jcifs.smb.NtlmPasswordAuthentication && ! ( (jcifs.smb.NtlmPasswordAuthentication) pwAuth ).areHashesExternal()
                    && pwAuth.getPassword().isEmpty();
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

        private static boolean isExternalAuth ( CIFSContext tc, NtlmPasswordAuthenticator npa ) {
            return npa instanceof jcifs.smb.NtlmPasswordAuthentication && ( (NtlmPasswordAuthentication) npa ).areHashesExternal()
                    && tc.getConfig().getDefaultPassword() != null;
        }
    
    
        boolean logoff ( boolean inError, boolean inUse ) {
            boolean wasInUse = false;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
Back to top