Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for Somani (0.16 sec)

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

         * 
         * @param domain
         * @param username
         * @param challenge
         * @param ansiHash
         * @param unicodeHash
         */
        public NtlmPasswordAuthentication ( String domain, String username, byte[] challenge, byte[] ansiHash, byte[] unicodeHash ) {
            super(domain, username, null);
            if ( domain == null || username == null || ansiHash == null || unicodeHash == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

         * <p>
         * Specifically, if the SID has
         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
         * returned (e.g. MYDOM\alice or MYDOM\Domain Users).
         * If the SID has been resolved but it is is a domain SID,
         * only the domain name will be returned (e.g. MYDOM).
         * If the SID has been resolved but it is a builtin account,
    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)
  3. src/test/java/jcifs/tests/ContextConfigTest.java

                assertEquals("foo", ntlm.getUsername());
                assertEquals("DOMAIN", ntlm.getUserDomain());
                assertEquals("bar", ntlm.getPassword());
            }
        }
    
    
        @Test
        @SuppressWarnings ( "deprecation" )
        public void testLegacyStringConstructor () throws IOException {
            try ( SmbResource f = new SmbFile("smb://DOMAIN;foo:bar@localhost/test") ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    			[in] uint32_t access_mask,
    			[in] sid_t *sid,
    			[out] policy_handle *domain_handle);
    
    	typedef struct {
    		uint32_t idx;
    		unicode_string name;
    	} SamrSamEntry;
    
    	typedef struct {
    		uint32_t count;
    		[size_is(count)] SamrSamEntry *entries;
    	} SamrSamArray;
    
    	[op(0x0f)]
    	int SamrEnumerateAliasesInDomain([in] policy_handle *domain_handle,
    			[in,out] uint32_t *resume_handle,
    			[in] uint32_t acct_flags,
    Others
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                        index = user.indexOf('\\');
                        if ( index == -1 )
                            index = user.indexOf('/');
                        domain = ( index != -1 ) ? user.substring(0, index) : domain;
                        user = ( index != -1 ) ? user.substring(index + 1) : user;
                    }
                    if ( user == null ) {
                        if ( !this.allowUserInteraction )
    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. src/main/java/jcifs/Configuration.java

        boolean isDfsDisabled ();
    
    
        /**
         * Enable hack to make kerberos auth work with DFS sending short names
         * 
         * This works by appending the domain name to the netbios short name and will fail horribly if this mapping is not
         * correct for your domain.
         * 
         * Property <tt>jcifs.smb.client.dfs.convertToFQDN</tt> (boolean, default false)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/KerberosTest.java

             * 
             */
            private static final long serialVersionUID = -4979600496889213143L;
    
    
            public RefreshableKerb5Authenticator ( Subject subject, String domain, String username, String password ) {
                super(subject, domain, username, password);
            }
    
    
            @Override
            public void refresh () throws CIFSException {
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         *
         * @see jcifs.internal.RequestWithPath#setFullUNCPath(java.lang.String, java.lang.String, java.lang.String)
         */
        @Override
        public void setFullUNCPath ( String domain, String server, String fullPath ) {
            this.domain = domain;
            this.server = server;
            this.fullPath = fullPath;
        }
    
    
        /**
         * @param path
         *            the path to set
         */
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTransport.java

    //        DcerpcHandle handle = null;
    //
    //        /* Procedure:
    //         * Lookup a DC in the target domain
    //         * Ask the DC for a referral for the domain (e.g. "\example.com")
    //         * Do NetrDfsEnumEx on the server returned in the referral to
    //         * get roots in target domain
    //         */
    //
    //        UniAddress dc = UniAddress.getByName(domainName);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 31.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NetworkExplorer.java

                    if ( index == -1 )
                        index = user.indexOf('/');
                    String domain = ( index != -1 ) ? user.substring(0, index) : this.defaultDomain;
                    user = ( index != -1 ) ? user.substring(index + 1) : user;
                    ntlm = new NtlmPasswordAuthentication(getTransportContext(), domain, user, password);
                }
    
                req.getSession().setAttribute("npa-" + server, ntlm);
    
    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)
Back to top