Home
last modified time | relevance | path

Searched refs:processBytes (Results 1 – 14 of 14) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
DJCEBlockCipher.java636 int len = cipher.processBytes(input, inputOffset, inputLen, out, 0); in engineUpdate()
654 cipher.processBytes(input, inputOffset, inputLen, null, 0); in engineUpdate()
669 return cipher.processBytes(input, inputOffset, inputLen, output, outputOffset); in engineUpdate()
688 len = cipher.processBytes(input, inputOffset, inputLen, tmp, 0); in engineDoFinal()
739 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset); in engineDoFinal()
975 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) in processBytes() method
1038 …public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthEx… in processBytes() method in JCEBlockCipher.BufferedGenericBlockCipher
1040 return cipher.processBytes(in, inOff, len, out, outOff); in processBytes()
1095 …public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) throws DataLengthEx… in processBytes() method in JCEBlockCipher.AEADGenericBlockCipher
1097 return cipher.processBytes(in, inOff, len, out, outOff); in processBytes()
DJCEStreamCipher.java316 cipher.processBytes(input, inputOffset, inputLen, out, 0); in engineUpdate()
331 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset); in engineUpdate()
369 cipher.processBytes(input, inputOffset, inputLen, output, outputOffset); in engineDoFinal()
/external/guava/src/com/google/common/io/
DByteProcessor.java42 boolean processBytes(byte[] buf, int off, int len) throws IOException; in processBytes() method
DByteStreams.java686 } while (processor.processBytes(buf, 0, amt));
706 public boolean processBytes(byte[] buf, int off, int len) {
732 public boolean processBytes(byte[] buf, int off, int len) {
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/
DStreamCipher.java45 public void processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) in processBytes() method
DStreamBlockCipher.java81 public void processBytes( in processBytes() method in StreamBlockCipher
DBufferedBlockCipher.java184 public int processBytes( in processBytes() method in BufferedBlockCipher
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
DAEADBlockCipher.java61 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) in processBytes() method
DCTSBlockCipher.java117 public int processBytes( in processBytes() method in CTSBlockCipher
DCCMBlockCipher.java104 public int processBytes(byte[] in, int inOff, int inLen, byte[] out, int outOff) in processBytes() method in CCMBlockCipher
DGCMBlockCipher.java190 public int processBytes(byte[] in, int inOff, int len, byte[] out, int outOff) in processBytes() method in GCMBlockCipher
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DRC4Engine.java70 public void processBytes( in processBytes() method in RC4Engine
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/paddings/
DPaddedBufferedBlockCipher.java174 public int processBytes( in processBytes() method in PaddedBufferedBlockCipher
/external/bouncycastle/patches/
Dandroid.patch2935 len = cipher.processBytes(input, inputOffset, inputLen, output, outputOffset);