Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for liven (0.14 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            return this.max_xmit;
        }
    
    
        /**
         * Get a handle to a service
         * 
         * @param url
         * @param tc
         *            context to use
         * @return a DCERPC handle for the given url
         * @throws MalformedURLException
         * @throws DcerpcException
         */
        public static DcerpcHandle getHandle ( String url, CIFSContext tc ) throws MalformedURLException, DcerpcException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

        public String getName() {
            boolean d = domain.length() > 0 && domain.equals( "?" ) == false;
            return d ? domain + "\\" + username : username;
        }
    
    /**
     * Computes the 24 byte ANSI password hash given the 8 byte server challenge.
     */
        public byte[] getAnsiHash( byte[] challenge ) {
            if( hashesExternal ) {
                return ansiHash;
            }
            switch (LM_COMPATIBILITY) {
            case 0:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            setDomain(getDefaultDomain());
            setUser(getDefaultUser());
            setWorkstation(getDefaultWorkstation());
        }
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message
         * using default values from the current environment.
         *
         * @param type2 The Type-2 message which this represents a response to.
         */
        public Type3Message(Type2Message type2) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

         *            context to use
         */
        public Type2Message ( CIFSContext tc ) {
            this(tc, getDefaultFlags(tc), null, null);
        }
    
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message
         * using default values from the current environment.
         * 
         * @param tc
         *            context to use
         * @param type1
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            return localhost;
        }
        public static Name getLocalName() {
            return localhost.hostName;
        }
    
    /** 
     * Determines the address of a host given it's host name. The name can be a NetBIOS name like
     * "freto" or an IP address like "192.168.1.15". It cannot be a DNS name;
     * the analygous {@link jcifs.smb1.UniAddress} or {@link java.net.InetAddress}
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        }
    
    
        /**
         * @param mechanism
         * @return whether the given mechanism is the preferred one for this credential
         */
        public boolean isPreferredMech ( ASN1ObjectIdentifier mechanism ) {
            return NtlmContext.NTLMSSP_OID.equals(mechanism);
        }
    
    
        /**
         * Computes the 24 byte ANSI password hash given the 8 byte server challenge.
         * 
         * @param tc
         * @param chlng
    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)
  7. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        /**
         * Creates a Type-2 message in response to the given Type-1 message
         * using default values from the current environment.
         *
         * @param type1 The Type-1 message which this represents a response to.
         */
        public Type2Message(Type1Message type1) {
            this(type1, null, null);
        }
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message.
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 12.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to ignore exceptions that occur during file copy
         */
        boolean isIgnoreCopyToException ();
    
    
        /**
         * @param cmd
         * @return the batch limit for the given command
         */
        int getBatchLimit ( String cmd );
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.notify_buf_size</tt> (int, default 1024)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SID.java

         * is an ArrayList of SIDs represents the local groups that the account is
         * a member of.
         * <p/>
         * This method is designed to assist with computing access control for a
         * given user when the target object's ACL has local groups. Local groups
         * are not listed in a user's group membership (e.g. as represented by the
         * tokenGroups constructed attribute retrived via LDAP).
         * <p/>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type3Message.java

            setUser(tc.getConfig().getDefaultUsername());
            setWorkstation(tc.getNameServiceClient().getLocalHost().getHostName());
        }
    
    
        /**
         * Creates a Type-3 message in response to the given Type-2 message.
         * 
         * @param tc
         *            context to use
         * @param type2
         *            The Type-2 message which this represents a response to.
         * @param targetName
    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)
Back to top