Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Haddad (0.26 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                            byte[] exchangedKey = new byte[16];
                            RC4 rc4 = new RC4(ntlm2SessionKey);
                            rc4.update(masterKey, 0, 16, exchangedKey, 0);
    /* RC4 was not added to Java until 1.5u7 so let's use our own for a little while longer ...
                            try {
                                Cipher rc4 = Cipher.getInstance("RC4");
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpFilter.java

            }
        }
    
    
        /**
         * @return
         */
        private CIFSContext getTransportContext () {
            return this.transportContext;
        }
    
    
        // Added by cgross to work with weblogic 6.1.
        /**
         * @param f
         */
        public void setFilterConfig ( FilterConfig f ) {
            try {
                init(f);
            }
            catch ( Exception e ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                        resp.setContentLength(0);
                        resp.flushBuffer();
                        return null;
                    }
                }
            }
    
            return ntlm;
        }
    
        // Added by cgross to work with weblogic 6.1.
        public void setFilterConfig( FilterConfig f ) {
            try {
                init( f );
            } catch( Exception e ) {
                e.printStackTrace();
            }
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
Back to top