Home | History | Annotate | Download | only in engines

Lines Matching refs:block

35      * @param engine the block cipher to be used for wrapping.
45 * @param engine the block cipher to be used for wrapping.
102 byte[] block = new byte[inLen + iv.length];
105 System.arraycopy(iv, 0, block, 0, iv.length);
106 System.arraycopy(in, inOff, block, iv.length, inLen);
114 System.arraycopy(block, 0, buf, 0, iv.length);
115 System.arraycopy(block, 8 * i, buf, iv.length, 8);
128 System.arraycopy(buf, 0, block, 0, 8);
129 System.arraycopy(buf, 8, block, 8 * i, 8);
133 return block;
154 byte[] block = new byte[inLen - iv.length];
159 System.arraycopy(in, inOff + iv.length, block, 0, inLen - iv.length);
170 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8);
184 System.arraycopy(buf, 8, block, 8 * (i - 1), 8);
193 return block;