Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Kass (0.23 sec)

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

        byte[] clientChallenge = null;
        byte[] challenge = null;
    
    /**
     * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
     * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
     * is used internally be jCIFS when parsing SMB URLs.
     */
    
        public NtlmPasswordAuthentication( String userInfo ) {
            domain = username = password = null;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

            if ( host.indexOf('.') < 0 && host.toUpperCase(Locale.ROOT).equals(host) ) {
                // this is not too good, probably should better pass the address and check that it is a netbios one.
                // While we could look up the domain controller/KDC we cannot really make the java kerberos implementation
                // use a KDC of our choice.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                        pass = userInfo.substring(i + 1);
                        break;
                    }
                }
                user = userInfo.substring(u, i);
            }
    
            this.domain = dom != null ? dom : ( defDomain != null ? defDomain : "" );
            this.username = user != null ? user : ( defUser != null ? defUser : "" );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java

        private NbtAddress queryAddress;
    
        private int numberOfNames;
        private byte[] macAddress;
        private byte[] stats;
    
        NbtAddress[] addressArray;
    
        /* It is a little awkward but prudent to pass the quering address
         * so that it may be included in the list of results. IOW we do
         * not want to create a new NbtAddress object for this particular
         * address from which the query is constructed, we want to populate
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            this(tc, "", "", "");
        }
    
    
        /**
         * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
         * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
         * is used internally be jCIFS when parsing SMB URLs.
         * 
         * @param tc
         * @param userInfo
         */
        public NtlmPasswordAuthentication ( CIFSContext tc, String userInfo ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

     * <tt>jcifs.Config.registerSmbURLHandler();</tt> method. This is required
     * to register the SMB protocol handler.
     * <p>
     * The userinfo component of the SMB URL (<tt>domain;user:pass</tt>) must
     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/SessionTest.java

                    Assume.assumeTrue(false);
                }
                throw e;
            }
        }
    
    
        protected void testCredentialUrl ( String url, String user, String pass, String dom ) throws SmbException, MalformedURLException {
            try ( SmbFile f = new SmbFile(url) ) {
                Credentials creds = f.getContext().getCredentials();
    
                assertFalse(creds.isAnonymous());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <tt>jcifs.smb1.Config.registerSmbURLHandler();</tt> method. This is required
     * to register the SMB protocol handler.
     * <p>
     * The userinfo component of the SMB URL (<tt>domain;user:pass</tt>) must
     * be URL encoded if it contains reserved characters. According to RFC 2396
     * these characters are non US-ASCII characters and most meta characters
     * however jCIFS will work correctly with anything but '@' which is used
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  9. src/main/java/jcifs/netbios/NodeStatusResponse.java

        private int numberOfNames;
        private byte[] macAddress;
        private byte[] stats;
    
        NbtAddress[] addressArray;
    
    
        /*
         * It is a little awkward but prudent to pass the quering address
         * so that it may be included in the list of results. IOW we do
         * not want to create a new NbtAddress object for this particular
         * address from which the query is constructed, we want to populate
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/config/DelegatingConfiguration.java

    /**
     * @author mbechler
     *
     */
    public class DelegatingConfiguration implements Configuration {
    
        private final Configuration delegate;
    
    
        /**
         * @param delegate
         *            delegate to pass all non-overridden method calls to
         * 
         */
        public DelegatingConfiguration ( Configuration delegate ) {
            this.delegate = delegate;
        }
    
    
        /**
         * {@inheritDoc}
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 17.6K bytes
    - Viewed (1)
Back to top