Home | History | Annotate | Download | only in crypto

Lines Matching refs:inputOffset

1691      * buffer, starting at <code>inputOffset</code> inclusive, are processed,
1698 * @param inputOffset the offset in <code>input</code> where the input
1709 public final byte[] update(byte[] input, int inputOffset, int inputLen) {
1713 if (input == null || inputOffset < 0
1714 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1722 return spi.engineUpdate(input, inputOffset, inputLen);
1731 * buffer, starting at <code>inputOffset</code> inclusive, are processed,
1749 * @param inputOffset the offset in <code>input</code> where the input
1761 public final int update(byte[] input, int inputOffset, int inputLen,
1767 if (input == null || inputOffset < 0
1768 || inputLen > (input.length - inputOffset) || inputLen < 0) {
1776 return spi.engineUpdate(input, inputOffset, inputLen,
1786 * buffer, starting at <code>inputOffset</code> inclusive, are processed,
1805 * @param inputOffset the offset in <code>input</code> where the input
1819 public final int update(byte[] input, int inputOffset, int inputLen,
1825 if (input == null || inputOffset < 0
1826 || inputLen > (input.length - inputOffset) || inputLen < 0
1835 return spi.engineUpdate(input, inputOffset, inputLen,
2064 * buffer, starting at <code>inputOffset</code> inclusive, and any input
2082 * @param inputOffset the offset in <code>input</code> where the input
2102 public final byte[] doFinal(byte[] input, int inputOffset, int inputLen)
2107 if (input == null || inputOffset < 0
2108 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2113 return spi.engineDoFinal(input, inputOffset, inputLen);
2122 * buffer, starting at <code>inputOffset</code> inclusive, and any input
2151 * @param inputOffset the offset in <code>input</code> where the input
2174 public final int doFinal(byte[] input, int inputOffset, int inputLen,
2181 if (input == null || inputOffset < 0
2182 || inputLen > (input.length - inputOffset) || inputLen < 0) {
2187 return spi.engineDoFinal(input, inputOffset, inputLen,
2197 * buffer, starting at <code>inputOffset</code> inclusive, and any input
2228 * @param inputOffset the offset in <code>input</code> where the input
2253 inputOffset, int inputLen,
2260 if (input == null || inputOffset < 0
2261 || inputLen > (input.length - inputOffset) || inputLen < 0
2267 return spi.engineDoFinal(input, inputOffset, inputLen,