Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for system (0.16 sec)

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

    public class Dfs {
    
        static class CacheEntry {
            long expiration;
            HashMap map;
    
            CacheEntry(long ttl) {
                if (ttl == 0)
                    ttl = Dfs.TTL;
                expiration = System.currentTimeMillis() + ttl * 1000L;
                map = new HashMap();
            }
        }
    
        static LogStream log = LogStream.getInstance();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            case 0:
            case 1:
            case 2:
                byte[] signingKey = new byte[40];
                getUserSessionKey(tc, chlng, signingKey, 0);
                System.arraycopy(getUnicodeHash(tc, chlng), 0, signingKey, 16, 24);
                return signingKey;
            case 3:
            case 4:
            case 5:
                /*
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "A device attached to the system is not functioning.",
            "Incorrect function.",
            "The parameter is incorrect.",
            "Invalid access to memory location.",
            "The handle is invalid.",
            "The parameter is incorrect.",
            "The system cannot find the file specified.",
            "The system cannot find the file specified.",
            "More data is available.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type3Message.java

                    setLMResponse(clientChallenge);
                    setNTResponse(ntlm2Response);
    
                    byte[] sessionNonce = new byte[16];
                    System.arraycopy(type2.getChallenge(), 0, sessionNonce, 0, 8);
                    System.arraycopy(clientChallenge, 0, sessionNonce, 8, 8);
    
                    MessageDigest md4 = Crypto.getMD4();
                    md4.update(passwordHash);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpURLConnection.java

    @Deprecated
    public class NtlmHttpURLConnection extends HttpURLConnection {
    
        private static final Logger log = LoggerFactory.getLogger(NtlmHttpURLConnection.class);
        private static final int MAX_REDIRECTS = Integer.parseInt(System.getProperty("http.maxRedirects", "20"));
    
        private HttpURLConnection connection;
    
        private Map<String, List<String>> requestProperties;
    
        private Map<String, List<String>> headerFields;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
  6. LICENSE

    integrity of the free software distribution system which is
    implemented by public license practices.  Many people have made
    generous contributions to the wide range of software distributed
    through that system in reliance on consistent application of that
    system; it is up to the author/donor to decide if he or she is willing
    to distribute software through any other system and a licensee cannot
    impose that choice.
    
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NetworkExplorer.java

            StringBuffer sb = new StringBuffer();
            byte[] buf = new byte[1024];
            int n;
            String name;
    
            Properties p = new Properties();
            p.putAll(System.getProperties());
            p.setProperty("jcifs.smb.client.soTimeout", "600000");
            p.setProperty("jcifs.smb.client.attrExpirationPeriod", "300000");
    
            Enumeration<String> e = getInitParameterNames();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                this.system_name = system_name;
                this.object_attributes = object_attributes;
                this.desired_access = desired_access;
                this.policy_handle = policy_handle;
            }
    
            public void encode_in(NdrBuffer _dst) throws NdrException {
                _dst.enc_ndr_referent(system_name, 1);
                if (system_name != null) {
                    _dst.enc_ndr_string(system_name);
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 33K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    } else if( log.level > 1 ) {
                        log.println( "unknown resolver method: " + s );
                    }
                }
                resolveOrder = new int[i];
                System.arraycopy( tmp, 0, resolveOrder, 0, i );
            }
        }
    
        int getNextNameTrnId() {
            if(( ++nextNameTrnId & 0xFFFF ) == 0 ) {
                nextNameTrnId = 1;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTreeImpl.java

                    e = i - 4;
                    break;
                }
            }
    
            StackTraceElement[] res = new StackTraceElement[e - s];
            System.arraycopy(stackTrace, s, res, 0, e - s);
            return res;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#finalize()
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
Back to top