Searched defs:getBlockSize (Results 1 - 17 of 17) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DBlockCipher.java33 public int getBlockSize(); method in interface:BlockCipher
H A DBufferedBlockCipher.java40 buf = new byte[cipher.getBlockSize()];
97 public int getBlockSize() method in class:BufferedBlockCipher
99 return cipher.getBlockSize();
118 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
144 leftOver = total % buf.length - (cipher.getBlockSize() + 2);
212 int blockSize = getBlockSize();
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
H A DNullEngine.java41 * @see org.bouncycastle.crypto.BlockCipher#getBlockSize()
43 public int getBlockSize() method in class:NullEngine
H A DDESedeEngine.java81 public int getBlockSize() method in class:DESedeEngine
H A DRC2Engine.java154 public int getBlockSize() method in class:RC2Engine
H A DDESEngine.java58 public int getBlockSize() method in class:DESEngine
H A DAESEngine.java374 public int getBlockSize() method in class:AESEngine
H A DAESFastEngine.java705 public int getBlockSize() method in class:AESFastEngine
H A DAESLightEngine.java272 public int getBlockSize() method in class:AESLightEngine
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DCBCBlockCipher.java31 this.blockSize = cipher.getBlockSize();
104 public int getBlockSize() method in class:CBCBlockCipher
106 return cipher.getBlockSize();
H A DCFBBlockCipher.java36 this.IV = new byte[cipher.getBlockSize()];
37 this.cfbV = new byte[cipher.getBlockSize()];
38 this.cfbOutV = new byte[cipher.getBlockSize()];
116 public int getBlockSize() method in class:CFBBlockCipher
H A DOFBBlockCipher.java35 this.IV = new byte[cipher.getBlockSize()];
36 this.ofbV = new byte[cipher.getBlockSize()];
37 this.ofbOutV = new byte[cipher.getBlockSize()];
114 public int getBlockSize() method in class:OFBBlockCipher
H A DSICBlockCipher.java30 this.blockSize = cipher.getBlockSize();
69 public int getBlockSize() method in class:SICBlockCipher
71 return cipher.getBlockSize();
H A DGOFBBlockCipher.java38 this.blockSize = cipher.getBlockSize();
45 this.IV = new byte[cipher.getBlockSize()];
46 this.ofbV = new byte[cipher.getBlockSize()];
47 this.ofbOutV = new byte[cipher.getBlockSize()];
128 public int getBlockSize() method in class:GOFBBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/macs/
H A DCFBBlockCipherMac.java36 this.IV = new byte[cipher.getBlockSize()];
37 this.cfbV = new byte[cipher.getBlockSize()];
38 this.cfbOutV = new byte[cipher.getBlockSize()];
96 public int getBlockSize() method in class:MacCFBBlockCipher
191 this(cipher, 8, (cipher.getBlockSize() * 8) / 2, null);
206 this(cipher, 8, (cipher.getBlockSize() * 8) / 2, padding);
257 mac = new byte[cipher.getBlockSize()];
263 buf = new byte[this.cipher.getBlockSize()];
309 int blockSize = cipher.getBlockSize();
341 int blockSize = cipher.getBlockSize();
[all...]
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DCipher.java379 public final int getBlockSize() { method in class:Cipher
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DCipherSuite.java573 public int getBlockSize() { method in class:CipherSuite

Completed in 8568 milliseconds