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

1 2 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
StreamCipher.java 46 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
StreamBlockCipher.java 32 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
BufferedBlockCipher.java 191 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;
ByteSource.java 531 processor.processBytes(bytes, 0, bytes.length);
ByteStreams.java 696 } while (read != -1 && processor.processBytes(buf, 0, read));
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
AEADBlockCipher.java 14 * {@link #processBytes(byte[], int, int, byte[], int)}.
89 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff)
112 * return the size of the output buffer required for a processBytes
121 * @return the space required to accommodate a call to processBytes
127 * return the size of the output buffer required for a processBytes plus a
136 * @return the space required to accommodate a call to processBytes and doFinal
CFBBlockCipher.java 194 processBytes(in, inOff, blockSize, out, outOff);
218 processBytes(in, inOff, blockSize, out, outOff);
242 processBytes(in, inOff, blockSize, out, outOff);
OFBBlockCipher.java 141 processBytes(in, inOff, blockSize, out, outOff);
CTSBlockCipher.java 118 public int processBytes(
SICBlockCipher.java 94 processBytes(in, inOff, blockSize, out, outOff);
CCMBlockCipher.java 131 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff)
GCMBlockCipher.java 341 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/
BaseStreamCipher.java 334 cipher.processBytes(input, inputOffset, inputLen, out, 0);
354 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
399 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
BaseBlockCipher.java     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RC4Engine.java 71 public int processBytes(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
PaddedBufferedBlockCipher.java 175 public int processBytes(
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTest.java 127 public boolean processBytes(byte[] buf, int off, int len) throws IOException {
150 public boolean processBytes(byte[] buf, int off, int len) throws IOException {
ByteSourceTester.java 174 public boolean processBytes(byte[] buf, int off, int len) throws IOException {
ByteStreamsTest.java 445 public boolean processBytes(byte[] buf, int off, int len)
463 public boolean processBytes(byte[] buf, int off, int len) {
FilesTest.java 713 public boolean processBytes(byte[] buffer, int offset, int length) throws IOException {
736 public boolean processBytes(byte[] buffer, int offset, int length) throws IOException {
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /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 

Completed in 845 milliseconds

1 2 3