Lines Matching refs:inputLen

830      * <code>inputLen</code> (in bytes).
839 * @param inputLen the input length (in bytes)
846 public final int getOutputSize(int inputLen) {
851 if (inputLen < 0) {
856 return spi.engineGetOutputSize(inputLen);
1690 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
1694 * <p>If <code>inputLen</code> is zero, this method returns
1700 * @param inputLen the input length
1709 public final byte[] update(byte[] input, int inputOffset, int inputLen) {
1714 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1719 if (inputLen == 0) {
1722 return spi.engineUpdate(input, inputOffset, inputLen);
1730 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
1740 * <p>If <code>inputLen</code> is zero, this method returns
1751 * @param inputLen the input length
1761 public final int update(byte[] input, int inputOffset, int inputLen,
1768 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1773 if (inputLen == 0) {
1776 return spi.engineUpdate(input, inputOffset, inputLen,
1785 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
1796 * <p>If <code>inputLen</code> is zero, this method returns
1807 * @param inputLen the input length
1819 public final int update(byte[] input, int inputOffset, int inputLen,
1826 || inputLen > (input.length - inputOffset) || inputLen < 0
1832 if (inputLen == 0) {
1835 return spi.engineUpdate(input, inputOffset, inputLen,
2063 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
2084 * @param inputLen the input length
2102 public final byte[] doFinal(byte[] input, int inputOffset, int inputLen)
2108 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2113 return spi.engineDoFinal(input, inputOffset, inputLen);
2121 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
2153 * @param inputLen the input length
2174 public final int doFinal(byte[] input, int inputOffset, int inputLen,
2182 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2187 return spi.engineDoFinal(input, inputOffset, inputLen,
2196 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
2230 * @param inputLen the input length
2253 public final int doFinal(byte[] input, int inputOffset, int inputLen,
2261 || inputLen > (input.length - inputOffset) || inputLen < 0
2267 return spi.engineDoFinal(input, inputOffset, inputLen,