HomeSort by relevance Sort by last modified time
    Searched refs:processBytes (Results 1 - 25 of 32) sorted by null

1 2

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
StreamCipher.java 45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
StreamBlockCipher.java 81 public void processBytes(
91 throw new DataLengthException("output buffer too small in processBytes()");
BufferedBlockCipher.java 184 public int processBytes(
  /external/guava/guava/src/com/google/common/io/
ByteProcessor.java 26 * <p>{@link #processBytes} will be called for each line that is read, and
45 boolean processBytes(byte[] buf, int off, int len) throws IOException;
ByteStreams.java 714 } while (processor.processBytes(buf, 0, amt));
735 public boolean processBytes(byte[] buf, int off, int len) {
763 public boolean processBytes(byte[] buf, int off, int len) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherOutputStream.java 58 int len = bufferedBlockCipher.processBytes(oneByte, 0, 1, buf, 0);
110 int outLen = bufferedBlockCipher.processBytes(b, off, len, buf, 0);
121 streamCipher.processBytes(b, off, len, buf, 0);
CipherInputStream.java 128 maxBuf = bufferedBlockCipher.processBytes(inBuf, 0, available, buf, 0);
132 streamCipher.processBytes(inBuf, 0, available, buf, 0);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
AEADBlockCipher.java 79 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
102 * return the size of the output buffer required for a processBytes
106 * @return the space required to accommodate a call to processBytes
112 * return the size of the output buffer required for a processBytes plus a
116 * @return the space required to accommodate a call to processBytes and doFinal
CTSBlockCipher.java 117 public int processBytes(
CCMBlockCipher.java 121 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)
GCMBlockCipher.java 271 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullInputStream.java 41 * <code>processBytes()</code> methods can be implemented to generate
52 * protected void processBytes(byte[] bytes, int offset, int length) {
232 processBytes(bytes, offset, returnLength);
309 protected void processBytes(byte[] bytes, int offset, int length) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
BaseBlockCipher.java 674 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0);
692 cipher.processBytes(input, inputOffset, inputLen, null, 0);
707 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
726 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0);
768 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
817 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
880 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException
882 return cipher.processBytes(in, inOff, len, out, outOff);
937 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException
939 return cipher.processBytes(in, inOff, len, out, outOff)
    [all...]
BaseStreamCipher.java 306 cipher.processBytes(input, inputOffset, inputLen, out, 0);
321 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
359 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JCEStreamCipher.java 333 cipher.processBytes(input, inputOffset, inputLen, out, 0);
348 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
388 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC4Engine.java 71 public void processBytes(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 175 public int processBytes(
  /prebuilts/sdk/tools/lib/
signapk.jar 
guava-10.0.1.jar 
lint.jar 
  /external/guava/guava-tests/test/com/google/common/io/
ByteStreamsTest.java 857 public boolean processBytes(byte[] buf, int off, int len) {
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/
commons-io-1.3.2.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1117 milliseconds

1 2