Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Barham (0.14 sec)

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

            }
    
            DcerpcException de;
            if ( ( de = msg.getResult() ) != null ) {
                throw de;
            }
        }
    
    
        /**
         * @param msg
         * @param out
         * @param buf
         * @param off
         * @param tot
         * @return
         * @throws IOException
         */
        private int sendFragments ( DcerpcMessage msg, byte[] out, NdrBuffer buf ) throws IOException {
            int off = 0;
    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/smb/DfsImpl.java

                dr = null;
            }
            return dr;
        }
    
    
        /**
         * @param tf
         * @param domain
         * @param root
         * @param path
         * @param rootDr
         * @param now
         * @param links
         * @return
         * @throws SmbAuthException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

            long firstKey = prepareRequests(request, response, params, timeout);
            doSend(request);
            return firstKey;
        }
    
    
        /**
         * @param request
         * @param response
         * @param params
         * @param timeout
         * @param firstKey
         * @return
         * @throws IOException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SID.java

                this.sub_authority[ i ] = id.sub_authority[ i - domsid.sub_authority_count ];
            }
        }
    
    
        /**
         * 
         * @param sid
         * @param type
         * @param domainName
         * @param acctName
         * @param decrementAuthority
         */
        public SID ( rpc.sid_t sid, int type, String domainName, String acctName, boolean decrementAuthority ) {
            this.revision = sid.revision;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/PACTest.java

            String key = "F7D3A155AF5E238A0B7A871A96BA2AB2";
            String expect = "9121D44B1AD560C7A3152B3CAC453AB4";
            testRC4HMac(5, data, key, expect);
        }
    
    
        /**
         * @param data
         * @param key
         * @param expect
         * @throws GeneralSecurityException
         * @throws PACDecodingException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFileOutputStream.java

        }
    
    
        /**
         * Just bypasses TransWaitNamedPipe - used by DCERPC bind.
         * 
         * @param b
         * @param off
         * @param len
         * @param flags
         * @throws IOException
         */
        public void writeDirect ( byte[] b, int off, int len, int flags ) throws IOException {
            if ( len <= 0 ) {
                return;
            }
    
            if ( this.tmp == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            System.arraycopy(plainData, KerberosConstants.CONFOUNDER_SIZE, decrypt, 0, decryptLength);
            return decrypt;
        }
    
    
        /**
         * @param data
         * @param key
         * @param cipher
         * @return
         * @throws GeneralSecurityException
         * @throws InvalidKeyException
         * @throws InvalidAlgorithmParameterException
         * @throws IllegalBlockSizeException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

            return p24;
        }
    
        /**
         * Creates the LMv2 response for the supplied information.
         *
         * @param domain The domain in which the username exists.
         * @param user The username.
         * @param password The user's password.
         * @param challenge The server challenge.
         * @param clientChallenge The client challenge (nonce). 
         */ 
        public static byte[] getLMv2Response(String domain, String user,
    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)
  9. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

        private SmbPipeInputStream input;
    
        private final String uncPath;
    
        private SmbTreeHandleImpl treeHandle;
    
        private int sharing = SmbConstants.DEFAULT_SHARING;
    
    
        /**
         * @param pipe
         */
        public SmbPipeHandleImpl ( SmbNamedPipe pipe ) {
            this.pipe = pipe;
            this.transact = ( pipe.getPipeType() & SmbPipeResource.PIPE_TYPE_TRANSACT ) == SmbPipeResource.PIPE_TYPE_TRANSACT;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java

        private int recv_buf_size;
        private int tx_buf_size;
    
        private int capabilities;
        private int sessionKey = 0x00000000;
        private boolean useUnicode;
    
    
        /**
         * 
         * @param ctx
         */
        public SmbComNegotiateResponse ( CIFSContext ctx ) {
            super(ctx.getConfig());
            this.server = new ServerData();
            this.capabilities = ctx.getConfig().getCapabilities();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 15.4K bytes
    - Viewed (0)
Back to top