Searched refs:processBytes (Results 1 - 18 of 18) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DStreamCipher.java45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) method in interface:StreamCipher
H A DStreamBlockCipher.java81 public void processBytes( method in class:StreamBlockCipher
91 throw new DataLengthException("output buffer too small in processBytes()");
H A DBufferedBlockCipher.java184 public int processBytes( method in class:BufferedBlockCipher
/external/guava/guava/src/com/google/common/io/
H A DByteProcessor.java26 * <p>{@link #processBytes} will be called for each line that is read, and
45 boolean processBytes(byte[] buf, int off, int len) throws IOException; method in interface:ByteProcessor
H A DByteStreams.java714 } 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/
H A DCipherOutputStream.java58 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);
H A DCipherInputStream.java128 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/
H A DAEADBlockCipher.java61 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) method in interface:AEADBlockCipher
84 * return the size of the output buffer required for a processBytes
88 * @return the space required to accommodate a call to processBytes
94 * return the size of the output buffer required for a processBytes plus a
98 * @return the space required to accommodate a call to processBytes and doFinal
H A DCTSBlockCipher.java117 public int processBytes( method in class:CTSBlockCipher
H A DCCMBlockCipher.java104 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff) method in class:CCMBlockCipher
H A DGCMBlockCipher.java195 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) method in class:GCMBlockCipher
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseBlockCipher.java644 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0);
662 cipher.processBytes(input, inputOffset, inputLen, null, 0);
677 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
696 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0);
746 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
791 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) method in interface:BaseBlockCipher.GenericBlockCipher
854 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException method in class:BaseBlockCipher.BufferedGenericBlockCipher
856 return cipher.processBytes(in, inOff, len, out, outOff);
911 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException method in class:BaseBlockCipher.AEADGenericBlockCipher
913 return cipher.processBytes(i
[all...]
H A DBaseStreamCipher.java306 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/
H A DJCEBlockCipher.java656 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0);
674 cipher.processBytes(input, inputOffset, inputLen, null, 0);
689 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
708 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0);
759 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
973 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) method in interface:JCEBlockCipher.GenericBlockCipher
1036 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException method in class:JCEBlockCipher.BufferedGenericBlockCipher
1038 return cipher.processBytes(in, inOff, len, out, outOff);
1093 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthException method in class:JCEBlockCipher.AEADGenericBlockCipher
1095 return cipher.processBytes(i
[all...]
H A DJCEStreamCipher.java322 cipher.processBytes(input, inputOffset, inputLen, out, 0);
337 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
375 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DRC4Engine.java70 public void processBytes( method in class:RC4Engine
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java174 public int processBytes( method in class:PaddedBufferedBlockCipher
/external/guava/guava-tests/test/com/google/common/io/
H A DByteStreamsTest.java857 public boolean processBytes(byte[] buf, int off, int len) {

Completed in 1748 milliseconds