Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 36 (0.15 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
        @Override
        public int size () {
            int size = Smb2Constants.SMB2_HEADER_LENGTH + 36 + size8(2 * this.dialects.length, 4);
            if ( this.negotiateContexts != null ) {
                for ( NegotiateContextRequest ncr : this.negotiateContexts ) {
                    size += 8 + size8(ncr.size());
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/DES.java

            (byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14,
            (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21,
            (byte)13, (byte) 5, (byte)60, (byte)52, (byte)44, (byte)36, (byte)28,
            (byte)20, (byte)12, (byte) 4, (byte)27, (byte)19, (byte)11, (byte)3
        };
        private static int[] totrot = {
            1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28
        };
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                offset += ntLength;
                writeSecurityBuffer(type3, 28, offset, domain);
                offset += domainLength;
                writeSecurityBuffer(type3, 36, offset, user);
                offset += userLength;
                writeSecurityBuffer(type3, 44, offset, workstation);
                offset += workstationLength;
                writeSecurityBuffer(type3, 52, offset, sessionKey);
    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/smb1/util/MD4.java

    // This file is currently unlocked (change this line if you lock the file)
    //
    // $Log: MD4.java,v $
    // Revision 1.2  1998/01/05 03:41:19  iang
    // Added references only.
    //
    // Revision 1.1.1.1  1997/11/03 22:36:56  hopwood
    // + Imported to CVS (tagged as 'start').
    //
    // Revision 0.1.0.0  1997/07/14  R. Naffah
    // + original version
    //
    // $Endlog$
    /*
     * Copyright (c) 1997 Systemics Ltd
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                SMBUtil.writeInt8(this.sessionId, dst, dstIndex + 40);
            }
            else {
                // 4 reserved
                SMBUtil.writeInt4(this.treeId, dst, dstIndex + 36);
                SMBUtil.writeInt8(this.sessionId, dst, dstIndex + 40);
                // + signature
            }
    
            return Smb2Constants.SMB2_HEADER_LENGTH;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type3Message.java

            int ntOff = writeSecurityBuffer(type3, 20, ntResponseBytes);
            pos += 8;
            int domOff = writeSecurityBuffer(type3, 28, domainBytes);
            pos += 8;
            int userOff = writeSecurityBuffer(type3, 36, userBytes);
            pos += 8;
            int wsOff = writeSecurityBuffer(type3, 44, workstationBytes);
            pos += 8;
            int skOff = writeSecurityBuffer(type3, 52, sessionKeyBytes);
            pos += 8;
    
    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