Lines Matching defs:inputOffset

1827      * buffer, starting at {@code inputOffset} inclusive, are processed,
1834 * @param inputOffset the offset in {@code input} where the input
1845 public final byte[] update(byte[] input, int inputOffset, int inputLen) {
1849 if (input == null || inputOffset < 0
1850 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1858 return spi.engineUpdate(input, inputOffset, inputLen);
1867 * buffer, starting at {@code inputOffset} inclusive, are processed,
1885 * @param inputOffset the offset in {@code input} where the input
1897 public final int update(byte[] input, int inputOffset, int inputLen,
1903 if (input == null || inputOffset < 0
1904 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1912 return spi.engineUpdate(input, inputOffset, inputLen,
1922 * buffer, starting at {@code inputOffset} inclusive, are processed,
1941 * @param inputOffset the offset in {@code input} where the input
1955 public final int update(byte[] input, int inputOffset, int inputLen,
1961 if (input == null || inputOffset < 0
1962 || inputLen > (input.length - inputOffset) || inputLen < 0
1971 return spi.engineUpdate(input, inputOffset, inputLen,
2200 * buffer, starting at {@code inputOffset} inclusive, and any input
2218 * @param inputOffset the offset in {@code input} where the input
2238 public final byte[] doFinal(byte[] input, int inputOffset, int inputLen)
2243 if (input == null || inputOffset < 0
2244 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2249 return spi.engineDoFinal(input, inputOffset, inputLen);
2258 * buffer, starting at {@code inputOffset} inclusive, and any input
2287 * @param inputOffset the offset in {@code input} where the input
2310 public final int doFinal(byte[] input, int inputOffset, int inputLen,
2317 if (input == null || inputOffset < 0
2318 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2323 return spi.engineDoFinal(input, inputOffset, inputLen,
2333 * buffer, starting at {@code inputOffset} inclusive, and any input
2364 * @param inputOffset the offset in {@code input} where the input
2389 public final int doFinal(byte[] input, int inputOffset, int inputLen,
2396 if (input == null || inputOffset < 0
2397 || inputLen > (input.length - inputOffset) || inputLen < 0
2403 return spi.engineDoFinal(input, inputOffset, inputLen,