Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pnBytes (0.16 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

                    dstIndex += 4;
    
                    SMBUtil.writeInt2(dstIndex - structStart, dst, cnOffsetOffset);
                    System.arraycopy(cnBytes, 0, dst, dstIndex, cnBytes.length);
                    dstIndex += cnBytes.length;
                    dstIndex += pad8(dstIndex);
    
                    SMBUtil.writeInt2(dstIndex - structStart, dst, dataOffsetOffset);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/DES.java

        public static void squashBytesToInts( byte[] inBytes, int inOff, int[] outInts,
                                               int outOff, int intLen ) {
    
            for ( int i = 0; i < intLen; ++i )
                outInts[outOff + i] =
                    ( ( inBytes[inOff + i * 4    ] & 0xff ) << 24 ) |
                    ( ( inBytes[inOff + i * 4 + 1] & 0xff ) << 16 ) |
                    ( ( inBytes[inOff + i * 4 + 2] & 0xff ) <<  8 ) |
    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)
Back to top