DES.java
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:19k
源码类别:

CA认证

开发平台:

Java

  1. package org.infosecurity.cryptography;
  2. /**
  3.  * <p>Title: DES算法的软件实现 </p>
  4.  * <p>Description: DES算法的软件实现,功能包括:加密解密</p>
  5.  * <p>Copyright: Copyright (c) 2003</p>
  6.  */
  7. public class DES   {
  8.     private int[] encryptKeys = new int[32];
  9.     private int[] decryptKeys = new int[32];
  10.     private int[] tempInts = new int[2];
  11.     public DES( ) {
  12.     }
  13.     // 步1.构造对象
  14.     public DES( byte[] key )    {
  15.         if( key.length == 7 ) {
  16.             byte[] key8 = new byte[8];
  17.             makeSMBKey( key, key8 );
  18.             setKey( key8 );
  19.         } else {
  20.             setKey( key );
  21.         }
  22.     }
  23.     /**
  24.      * 步2. 加密一个数组(长度必须是8的倍数)
  25.      */
  26.     public byte[] encrypt(byte[] clearText) {
  27.         int length = clearText.length;
  28.         if (length % 8 != 0) {
  29.             System.out.println("长度必须是8的倍数");
  30.             return null;
  31.         }
  32.         byte[] cipherText = new byte[length];
  33.         int count = length / 8;
  34.         for (int i=0; i<count; i++)
  35.             encrypt(clearText, i*8, cipherText, i*8);
  36.         return cipherText;
  37.     }
  38.     /**
  39.      * 步3.解密一个数组(长度必须是8的倍数)
  40.      */
  41.     public byte[] decrypt(byte[] cipherText) {
  42.         int length = cipherText.length;
  43.         if (length % 8 != 0) {
  44.             System.out.println("长度必须是8的倍数");
  45.             return null;
  46.         }
  47.         byte[] clearText = new byte[length];
  48.         int count = length / 8;
  49.         for (int i=0; i<count; i++)
  50.             decrypt(cipherText, i*8, clearText, i*8);
  51.         return clearText;
  52.     }
  53.     /*=====================以下为内部使用方法===================*/
  54.     public static void makeSMBKey(byte[] key7, byte[] key8) {
  55.         int i;
  56.         key8[0] = (byte) ( ( key7[0] >> 1) & 0xff);
  57.         key8[1] = (byte)(( ((key7[0] & 0x01) << 6) | (((key7[1] & 0xff)>>2) & 0xff)) & 0xff );
  58.         key8[2] = (byte)(( ((key7[1] & 0x03) << 5) | (((key7[2] & 0xff)>>3) & 0xff)) & 0xff );
  59.         key8[3] = (byte)(( ((key7[2] & 0x07) << 4) | (((key7[3] & 0xff)>>4) & 0xff)) & 0xff );
  60.         key8[4] = (byte)(( ((key7[3] & 0x0F) << 3) | (((key7[4] & 0xff)>>5) & 0xff)) & 0xff );
  61.         key8[5] = (byte)(( ((key7[4] & 0x1F) << 2) | (((key7[5] & 0xff)>>6) & 0xff)) & 0xff );
  62.         key8[6] = (byte)(( ((key7[5] & 0x3F) << 1) | (((key7[6] & 0xff)>>7) & 0xff)) & 0xff );
  63.         key8[7] = (byte)(key7[6] & 0x7F);
  64.         for (i=0;i<8;i++) {
  65.             key8[i] = (byte)( key8[i] << 1);
  66.         }
  67.     }
  68.     public void setKey( byte[] key ) {
  69.         deskey( key, true, encryptKeys );
  70.         deskey( key, false, decryptKeys );
  71.     }
  72.     private void deskey( byte[] keyBlock, boolean encrypting, int[] KnL ) {
  73.         int i, j, l, m, n;
  74.         int[] pc1m = new int[56];
  75.         int[] pcr  = new int[56];
  76.         int[] kn   = new int[32];
  77.         for ( j = 0; j < 56; ++j )  {
  78.             l       = pc1[j];
  79.             m       = l & 07;
  80.             pc1m[j] = ( (keyBlock[l >>> 3] & bytebit[m]) != 0 )? 1: 0;
  81.         }
  82.         for ( i = 0; i < 16; ++i ) {
  83.             if ( encrypting )
  84.                 m = i << 1;
  85.             else
  86.                 m = (15-i) << 1;
  87.             n = m+1;
  88.             kn[m] = kn[n] = 0;
  89.             for ( j = 0; j < 28; ++j ) {
  90.                 l = j+totrot[i];
  91.                 if ( l < 28 )
  92.                     pcr[j] = pc1m[l];
  93.                 else
  94.                     pcr[j] = pc1m[l-28];
  95.             }
  96.             for ( j=28; j < 56; ++j ) {
  97.                 l = j+totrot[i];
  98.                 if ( l < 56 )
  99.                     pcr[j] = pc1m[l];
  100.                 else
  101.                     pcr[j] = pc1m[l-28];
  102.             }
  103.             for ( j = 0; j < 24; ++j ) {
  104.                 if ( pcr[pc2[j]] != 0 )
  105.                     kn[m] |= bigbyte[j];
  106.                 if ( pcr[pc2[j+24]] != 0 )
  107.                     kn[n] |= bigbyte[j];
  108.             }
  109.         }
  110.         cookey( kn, KnL );
  111.     }
  112.     private void cookey( int[] raw, int KnL[] )     {
  113.         int raw0, raw1;
  114.         int rawi, KnLi;
  115.         int i;
  116.         for ( i = 0, rawi = 0, KnLi = 0; i < 16; ++i )   {
  117.             raw0 = raw[rawi++];
  118.             raw1 = raw[rawi++];
  119.             KnL[KnLi]  = (raw0 & 0x00fc0000) <<   6;
  120.             KnL[KnLi] |= (raw0 & 0x00000fc0) <<  10;
  121.             KnL[KnLi] |= (raw1 & 0x00fc0000) >>> 10;
  122.             KnL[KnLi] |= (raw1 & 0x00000fc0) >>>  6;
  123.             ++KnLi;
  124.             KnL[KnLi]  = (raw0 & 0x0003f000) <<  12;
  125.             KnL[KnLi] |= (raw0 & 0x0000003f) <<  16;
  126.             KnL[KnLi] |= (raw1 & 0x0003f000) >>>  4;
  127.             KnL[KnLi] |= (raw1 & 0x0000003f);
  128.             ++KnLi;
  129.         }
  130.     }
  131.     private void encrypt( byte[] clearText, int clearOff, byte[] cipherText, int cipherOff ) {
  132.         squashBytesToInts( clearText, clearOff, tempInts, 0, 2 );
  133.         des( tempInts, tempInts, encryptKeys );
  134.         spreadIntsToBytes( tempInts, 0, cipherText, cipherOff, 2 );
  135.     }
  136.     private void decrypt( byte[] cipherText, int cipherOff, byte[] clearText, int clearOff ) {
  137.         squashBytesToInts( cipherText, cipherOff, tempInts, 0, 2 );
  138.         des( tempInts, tempInts, decryptKeys );
  139.         spreadIntsToBytes( tempInts, 0, clearText, clearOff, 2 );
  140.     }
  141.     private void des( int[] inInts, int[] outInts, int[] keys ) {
  142.         int fval, work, right, leftt;
  143.         int round;
  144.         int keysi = 0;
  145.         leftt = inInts[0];
  146.         right = inInts[1];
  147.         work   = ((leftt >>>  4) ^ right) & 0x0f0f0f0f;
  148.         right ^= work;
  149.         leftt ^= (work << 4);
  150.         work   = ((leftt >>> 16) ^ right) & 0x0000ffff;
  151.         right ^= work;
  152.         leftt ^= (work << 16);
  153.         work   = ((right >>>  2) ^ leftt) & 0x33333333;
  154.         leftt ^= work;
  155.         right ^= (work << 2);
  156.         work   = ((right >>>  8) ^ leftt) & 0x00ff00ff;
  157.         leftt ^= work;
  158.         right ^= (work << 8);
  159.         right  = (right << 1) | ((right >>> 31) & 1);
  160.         work   = (leftt ^ right) & 0xaaaaaaaa;
  161.         leftt ^= work;
  162.         right ^= work;
  163.         leftt  = (leftt << 1) | ((leftt >>> 31) & 1);
  164.         for ( round = 0; round < 8; ++round )  {
  165.             work   = (right << 28) | (right >>> 4);
  166.             work  ^= keys[keysi++];
  167.             fval   = SP7[ work         & 0x0000003f ];
  168.             fval  |= SP5[(work >>>  8) & 0x0000003f ];
  169.             fval  |= SP3[(work >>> 16) & 0x0000003f ];
  170.             fval  |= SP1[(work >>> 24) & 0x0000003f ];
  171.             work   = right ^ keys[keysi++];
  172.             fval  |= SP8[ work         & 0x0000003f ];
  173.             fval  |= SP6[(work >>>  8) & 0x0000003f ];
  174.             fval  |= SP4[(work >>> 16) & 0x0000003f ];
  175.             fval  |= SP2[(work >>> 24) & 0x0000003f ];
  176.             leftt ^= fval;
  177.             work   = (leftt << 28) | (leftt >>> 4);
  178.             work  ^= keys[keysi++];
  179.             fval   = SP7[ work         & 0x0000003f ];
  180.             fval  |= SP5[(work >>>  8) & 0x0000003f ];
  181.             fval  |= SP3[(work >>> 16) & 0x0000003f ];
  182.             fval  |= SP1[(work >>> 24) & 0x0000003f ];
  183.             work   = leftt ^ keys[keysi++];
  184.             fval  |= SP8[ work         & 0x0000003f ];
  185.             fval  |= SP6[(work >>>  8) & 0x0000003f ];
  186.             fval  |= SP4[(work >>> 16) & 0x0000003f ];
  187.             fval  |= SP2[(work >>> 24) & 0x0000003f ];
  188.             right ^= fval;
  189.         }
  190.         right  = (right << 31) | (right >>> 1);
  191.         work   = (leftt ^ right) & 0xaaaaaaaa;
  192.         leftt ^= work;
  193.         right ^= work;
  194.         leftt  = (leftt << 31) | (leftt >>> 1);
  195.         work   = ((leftt >>>  8) ^ right) & 0x00ff00ff;
  196.         right ^= work;
  197.         leftt ^= (work << 8);
  198.         work   = ((leftt >>>  2) ^ right) & 0x33333333;
  199.         right ^= work;
  200.         leftt ^= (work << 2);
  201.         work   = ((right >>> 16) ^ leftt) & 0x0000ffff;
  202.         leftt ^= work;
  203.         right ^= (work << 16);
  204.         work   = ((right >>>  4) ^ leftt) & 0x0f0f0f0f;
  205.         leftt ^= work;
  206.         right ^= (work << 4);
  207.         outInts[0] = right;
  208.         outInts[1] = leftt;
  209.     }
  210.     // 加密一个数据块
  211.     public void encrypt( byte[] clearText, byte[] cipherText )  {
  212.         encrypt( clearText, 0, cipherText, 0 );
  213.     }
  214.     // 解密一个数据块
  215.     public void decrypt( byte[] cipherText, byte[] clearText ) {
  216.         decrypt( cipherText, 0, clearText, 0 );
  217.     }
  218.     private static byte[] bytebit = {
  219.         (byte)0x80, (byte)0x40, (byte)0x20, (byte)0x10,
  220.         (byte)0x08, (byte)0x04, (byte)0x02, (byte)0x01
  221.     };
  222.     private static int[] bigbyte = {
  223.         0x800000, 0x400000, 0x200000, 0x100000,
  224.         0x080000, 0x040000, 0x020000, 0x010000,
  225.         0x008000, 0x004000, 0x002000, 0x001000,
  226.         0x000800, 0x000400, 0x000200, 0x000100,
  227.         0x000080, 0x000040, 0x000020, 0x000010,
  228.         0x000008, 0x000004, 0x000002, 0x000001
  229.     };
  230.     private static byte[] pc1 = {
  231.         (byte)56, (byte)48, (byte)40, (byte)32, (byte)24, (byte)16, (byte) 8,
  232.         (byte) 0, (byte)57, (byte)49, (byte)41, (byte)33, (byte)25, (byte)17,
  233.         (byte) 9, (byte) 1, (byte)58, (byte)50, (byte)42, (byte)34, (byte)26,
  234.         (byte)18, (byte)10, (byte) 2, (byte)59, (byte)51, (byte)43, (byte)35,
  235.         (byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14,
  236.         (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21,
  237.         (byte)13, (byte) 5, (byte)60, (byte)52, (byte)44, (byte)36, (byte)28,
  238.         (byte)20, (byte)12, (byte) 4, (byte)27, (byte)19, (byte)11, (byte)3
  239.     };
  240.     private static int[] totrot = {
  241.         1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28
  242.     };
  243.     private static byte[] pc2 = {
  244.         (byte)13, (byte)16, (byte)10, (byte)23, (byte) 0, (byte) 4,
  245.         (byte) 2, (byte)27, (byte)14, (byte) 5, (byte)20, (byte) 9,
  246.         (byte)22, (byte)18, (byte)11, (byte)3 , (byte)25, (byte) 7,
  247.         (byte)15, (byte) 6, (byte)26, (byte)19, (byte)12, (byte) 1,
  248.         (byte)40, (byte)51, (byte)30, (byte)36, (byte)46, (byte)54,
  249.         (byte)29, (byte)39, (byte)50, (byte)44, (byte)32, (byte)47,
  250.         (byte)43, (byte)48, (byte)38, (byte)55, (byte)33, (byte)52,
  251.         (byte)45, (byte)41, (byte)49, (byte)35, (byte)28, (byte)31,
  252.     };
  253.     private static int[] SP1 = {
  254.         0x01010400, 0x00000000, 0x00010000, 0x01010404,
  255.         0x01010004, 0x00010404, 0x00000004, 0x00010000,
  256.         0x00000400, 0x01010400, 0x01010404, 0x00000400,
  257.         0x01000404, 0x01010004, 0x01000000, 0x00000004,
  258.         0x00000404, 0x01000400, 0x01000400, 0x00010400,
  259.         0x00010400, 0x01010000, 0x01010000, 0x01000404,
  260.         0x00010004, 0x01000004, 0x01000004, 0x00010004,
  261.         0x00000000, 0x00000404, 0x00010404, 0x01000000,
  262.         0x00010000, 0x01010404, 0x00000004, 0x01010000,
  263.         0x01010400, 0x01000000, 0x01000000, 0x00000400,
  264.         0x01010004, 0x00010000, 0x00010400, 0x01000004,
  265.         0x00000400, 0x00000004, 0x01000404, 0x00010404,
  266.         0x01010404, 0x00010004, 0x01010000, 0x01000404,
  267.         0x01000004, 0x00000404, 0x00010404, 0x01010400,
  268.         0x00000404, 0x01000400, 0x01000400, 0x00000000,
  269.         0x00010004, 0x00010400, 0x00000000, 0x01010004
  270.     };
  271.     private static int[] SP2 = {
  272.         0x80108020, 0x80008000, 0x00008000, 0x00108020,
  273.         0x00100000, 0x00000020, 0x80100020, 0x80008020,
  274.         0x80000020, 0x80108020, 0x80108000, 0x80000000,
  275.         0x80008000, 0x00100000, 0x00000020, 0x80100020,
  276.         0x00108000, 0x00100020, 0x80008020, 0x00000000,
  277.         0x80000000, 0x00008000, 0x00108020, 0x80100000,
  278.         0x00100020, 0x80000020, 0x00000000, 0x00108000,
  279.         0x00008020, 0x80108000, 0x80100000, 0x00008020,
  280.         0x00000000, 0x00108020, 0x80100020, 0x00100000,
  281.         0x80008020, 0x80100000, 0x80108000, 0x00008000,
  282.         0x80100000, 0x80008000, 0x00000020, 0x80108020,
  283.         0x00108020, 0x00000020, 0x00008000, 0x80000000,
  284.         0x00008020, 0x80108000, 0x00100000, 0x80000020,
  285.         0x00100020, 0x80008020, 0x80000020, 0x00100020,
  286.         0x00108000, 0x00000000, 0x80008000, 0x00008020,
  287.         0x80000000, 0x80100020, 0x80108020, 0x00108000
  288.     };
  289.     private static int[] SP3 = {
  290.         0x00000208, 0x08020200, 0x00000000, 0x08020008,
  291.         0x08000200, 0x00000000, 0x00020208, 0x08000200,
  292.         0x00020008, 0x08000008, 0x08000008, 0x00020000,
  293.         0x08020208, 0x00020008, 0x08020000, 0x00000208,
  294.         0x08000000, 0x00000008, 0x08020200, 0x00000200,
  295.         0x00020200, 0x08020000, 0x08020008, 0x00020208,
  296.         0x08000208, 0x00020200, 0x00020000, 0x08000208,
  297.         0x00000008, 0x08020208, 0x00000200, 0x08000000,
  298.         0x08020200, 0x08000000, 0x00020008, 0x00000208,
  299.         0x00020000, 0x08020200, 0x08000200, 0x00000000,
  300.         0x00000200, 0x00020008, 0x08020208, 0x08000200,
  301.         0x08000008, 0x00000200, 0x00000000, 0x08020008,
  302.         0x08000208, 0x00020000, 0x08000000, 0x08020208,
  303.         0x00000008, 0x00020208, 0x00020200, 0x08000008,
  304.         0x08020000, 0x08000208, 0x00000208, 0x08020000,
  305.         0x00020208, 0x00000008, 0x08020008, 0x00020200
  306.     };
  307.     private static int[] SP4 = {
  308.         0x00802001, 0x00002081, 0x00002081, 0x00000080,
  309.         0x00802080, 0x00800081, 0x00800001, 0x00002001,
  310.         0x00000000, 0x00802000, 0x00802000, 0x00802081,
  311.         0x00000081, 0x00000000, 0x00800080, 0x00800001,
  312.         0x00000001, 0x00002000, 0x00800000, 0x00802001,
  313.         0x00000080, 0x00800000, 0x00002001, 0x00002080,
  314.         0x00800081, 0x00000001, 0x00002080, 0x00800080,
  315.         0x00002000, 0x00802080, 0x00802081, 0x00000081,
  316.         0x00800080, 0x00800001, 0x00802000, 0x00802081,
  317.         0x00000081, 0x00000000, 0x00000000, 0x00802000,
  318.         0x00002080, 0x00800080, 0x00800081, 0x00000001,
  319.         0x00802001, 0x00002081, 0x00002081, 0x00000080,
  320.         0x00802081, 0x00000081, 0x00000001, 0x00002000,
  321.         0x00800001, 0x00002001, 0x00802080, 0x00800081,
  322.         0x00002001, 0x00002080, 0x00800000, 0x00802001,
  323.         0x00000080, 0x00800000, 0x00002000, 0x00802080
  324.     };
  325.     private static int[] SP5 = {
  326.         0x00000100, 0x02080100, 0x02080000, 0x42000100,
  327.         0x00080000, 0x00000100, 0x40000000, 0x02080000,
  328.         0x40080100, 0x00080000, 0x02000100, 0x40080100,
  329.         0x42000100, 0x42080000, 0x00080100, 0x40000000,
  330.         0x02000000, 0x40080000, 0x40080000, 0x00000000,
  331.         0x40000100, 0x42080100, 0x42080100, 0x02000100,
  332.         0x42080000, 0x40000100, 0x00000000, 0x42000000,
  333.         0x02080100, 0x02000000, 0x42000000, 0x00080100,
  334.         0x00080000, 0x42000100, 0x00000100, 0x02000000,
  335.         0x40000000, 0x02080000, 0x42000100, 0x40080100,
  336.         0x02000100, 0x40000000, 0x42080000, 0x02080100,
  337.         0x40080100, 0x00000100, 0x02000000, 0x42080000,
  338.         0x42080100, 0x00080100, 0x42000000, 0x42080100,
  339.         0x02080000, 0x00000000, 0x40080000, 0x42000000,
  340.         0x00080100, 0x02000100, 0x40000100, 0x00080000,
  341.         0x00000000, 0x40080000, 0x02080100, 0x40000100
  342.     };
  343.     private static int[] SP6 = {
  344.         0x20000010, 0x20400000, 0x00004000, 0x20404010,
  345.         0x20400000, 0x00000010, 0x20404010, 0x00400000,
  346.         0x20004000, 0x00404010, 0x00400000, 0x20000010,
  347.         0x00400010, 0x20004000, 0x20000000, 0x00004010,
  348.         0x00000000, 0x00400010, 0x20004010, 0x00004000,
  349.         0x00404000, 0x20004010, 0x00000010, 0x20400010,
  350.         0x20400010, 0x00000000, 0x00404010, 0x20404000,
  351.         0x00004010, 0x00404000, 0x20404000, 0x20000000,
  352.         0x20004000, 0x00000010, 0x20400010, 0x00404000,
  353.         0x20404010, 0x00400000, 0x00004010, 0x20000010,
  354.         0x00400000, 0x20004000, 0x20000000, 0x00004010,
  355.         0x20000010, 0x20404010, 0x00404000, 0x20400000,
  356.         0x00404010, 0x20404000, 0x00000000, 0x20400010,
  357.         0x00000010, 0x00004000, 0x20400000, 0x00404010,
  358.         0x00004000, 0x00400010, 0x20004010, 0x00000000,
  359.         0x20404000, 0x20000000, 0x00400010, 0x20004010
  360.     };
  361.     private static int[] SP7 = {
  362.         0x00200000, 0x04200002, 0x04000802, 0x00000000,
  363.         0x00000800, 0x04000802, 0x00200802, 0x04200800,
  364.         0x04200802, 0x00200000, 0x00000000, 0x04000002,
  365.         0x00000002, 0x04000000, 0x04200002, 0x00000802,
  366.         0x04000800, 0x00200802, 0x00200002, 0x04000800,
  367.         0x04000002, 0x04200000, 0x04200800, 0x00200002,
  368.         0x04200000, 0x00000800, 0x00000802, 0x04200802,
  369.         0x00200800, 0x00000002, 0x04000000, 0x00200800,
  370.         0x04000000, 0x00200800, 0x00200000, 0x04000802,
  371.         0x04000802, 0x04200002, 0x04200002, 0x00000002,
  372.         0x00200002, 0x04000000, 0x04000800, 0x00200000,
  373.         0x04200800, 0x00000802, 0x00200802, 0x04200800,
  374.         0x00000802, 0x04000002, 0x04200802, 0x04200000,
  375.         0x00200800, 0x00000000, 0x00000002, 0x04200802,
  376.         0x00000000, 0x00200802, 0x04200000, 0x00000800,
  377.         0x04000002, 0x04000800, 0x00000800, 0x00200002
  378.     };
  379.     private static int[] SP8 = {
  380.         0x10001040, 0x00001000, 0x00040000, 0x10041040,
  381.         0x10000000, 0x10001040, 0x00000040, 0x10000000,
  382.         0x00040040, 0x10040000, 0x10041040, 0x00041000,
  383.         0x10041000, 0x00041040, 0x00001000, 0x00000040,
  384.         0x10040000, 0x10000040, 0x10001000, 0x00001040,
  385.         0x00041000, 0x00040040, 0x10040040, 0x10041000,
  386.         0x00001040, 0x00000000, 0x00000000, 0x10040040,
  387.         0x10000040, 0x10001000, 0x00041040, 0x00040000,
  388.         0x00041040, 0x00040000, 0x10041000, 0x00001000,
  389.         0x00000040, 0x10040040, 0x00001000, 0x00041040,
  390.         0x10001000, 0x00000040, 0x10000040, 0x10040000,
  391.         0x10040040, 0x10000000, 0x00040000, 0x10001040,
  392.         0x00000000, 0x10041040, 0x00040040, 0x10000040,
  393.         0x10040000, 0x10001000, 0x10001040, 0x00000000,
  394.         0x10041040, 0x00041000, 0x00041000, 0x00001040,
  395.         0x00001040, 0x00040040, 0x10000000, 0x10041000
  396.     };
  397.     public static void squashBytesToInts( byte[] inBytes, int inOff, int[] outInts,
  398.                                            int outOff, int intLen ) {
  399.         for ( int i = 0; i < intLen; ++i )
  400.             outInts[outOff + i] =
  401.                 ( ( inBytes[inOff + i * 4    ] & 0xff ) << 24 ) |
  402.                 ( ( inBytes[inOff + i * 4 + 1] & 0xff ) << 16 ) |
  403.                 ( ( inBytes[inOff + i * 4 + 2] & 0xff ) <<  8 ) |
  404.                  ( inBytes[inOff + i * 4 + 3] & 0xff );
  405.     }
  406.     public static void spreadIntsToBytes( int[] inInts, int inOff, byte[] outBytes,
  407.                                          int outOff, int intLen ) {
  408.         for ( int i = 0; i < intLen; ++i ) {
  409.             outBytes[outOff + i * 4    ] = (byte) ( inInts[inOff + i] >>> 24 );
  410.             outBytes[outOff + i * 4 + 1] = (byte) ( inInts[inOff + i] >>> 16 );
  411.             outBytes[outOff + i * 4 + 2] = (byte) ( inInts[inOff + i] >>>  8 );
  412.             outBytes[outOff + i * 4 + 3] = (byte)   inInts[inOff + i];
  413.         }
  414.     }
  415. }