Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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 Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
Back to top