Home
last modified time | relevance | path

Searched refs:getBlockSize (Results 1 – 25 of 47) sorted by relevance

12

/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
DCipherSuiteTest.java208 .getBlockSize()); in testGetBlockSize()
211 .getBlockSize()); in testGetBlockSize()
214 .getBlockSize()); in testGetBlockSize()
217 .getBlockSize()); in testGetBlockSize()
220 .getBlockSize()); in testGetBlockSize()
223 .getBlockSize()); in testGetBlockSize()
226 .getBlockSize()); in testGetBlockSize()
229 .getBlockSize()); in testGetBlockSize()
232 .getBlockSize()); in testGetBlockSize()
235 .getBlockSize()); in testGetBlockSize()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
DCBCBlockCipherMac.java34 this(cipher, (cipher.getBlockSize() * 8) / 2, null); in CBCBlockCipherMac()
48 this(cipher, (cipher.getBlockSize() * 8) / 2, padding); in CBCBlockCipherMac()
99 mac = new byte[cipher.getBlockSize()]; in CBCBlockCipherMac()
101 buf = new byte[cipher.getBlockSize()]; in CBCBlockCipherMac()
145 int blockSize = cipher.getBlockSize(); in update()
176 int blockSize = cipher.getBlockSize(); in doFinal()
/external/llvm/lib/Transforms/Instrumentation/
DMaximumSpanningTree.h41 static bool getBlockSize(const T *X) { in getBlockSize() function
51 size_t XSizeA = getBlockSize(X.first.first); in operator()
52 size_t YSizeA = getBlockSize(Y.first.first); in operator()
56 size_t XSizeB = getBlockSize(X.first.second); in operator()
57 size_t YSizeB = getBlockSize(Y.first.second); in operator()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DBufferedBlockCipher.java40 buf = new byte[cipher.getBlockSize()]; in BufferedBlockCipher()
97 public int getBlockSize() in getBlockSize() method in BufferedBlockCipher
99 return cipher.getBlockSize(); in getBlockSize()
118 leftOver = total % buf.length - (cipher.getBlockSize() + 2); in getUpdateOutputSize()
197 int blockSize = getBlockSize(); in processBytes()
DBlockCipher.java33 public int getBlockSize(); in getBlockSize() method
DStreamBlockCipher.java24 if (cipher.getBlockSize() != 1) in StreamBlockCipher()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
DOFBBlockCipher.java35 this.IV = new byte[cipher.getBlockSize()]; in OFBBlockCipher()
36 this.ofbV = new byte[cipher.getBlockSize()]; in OFBBlockCipher()
37 this.ofbOutV = new byte[cipher.getBlockSize()]; in OFBBlockCipher()
122 public int getBlockSize() in getBlockSize() method in OFBBlockCipher
DSICBlockCipher.java31 this.blockSize = cipher.getBlockSize(); in SICBlockCipher()
79 public int getBlockSize() in getBlockSize() method in SICBlockCipher
81 return cipher.getBlockSize(); in getBlockSize()
DCFBBlockCipher.java36 this.IV = new byte[cipher.getBlockSize()]; in CFBBlockCipher()
37 this.cfbV = new byte[cipher.getBlockSize()]; in CFBBlockCipher()
38 this.cfbOutV = new byte[cipher.getBlockSize()]; in CFBBlockCipher()
124 public int getBlockSize() in getBlockSize() method in CFBBlockCipher
DCBCBlockCipher.java32 this.blockSize = cipher.getBlockSize(); in CBCBlockCipher()
123 public int getBlockSize() in getBlockSize() method in CBCBlockCipher
125 return cipher.getBlockSize(); in getBlockSize()
DCTSBlockCipher.java32 blockSize = cipher.getBlockSize(); in CTSBlockCipher()
130 int blockSize = getBlockSize(); in processBytes()
197 int blockSize = cipher.getBlockSize(); in doFinal()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
DBaseBlockCipher.java147 return baseEngine.getBlockSize(); in engineGetBlockSize()
220 ivLength = baseEngine.getBlockSize(); in engineSetMode()
226 ivLength = baseEngine.getBlockSize(); in engineSetMode()
237 new OFBBlockCipher(baseEngine, 8 * baseEngine.getBlockSize())); in engineSetMode()
242 ivLength = baseEngine.getBlockSize(); in engineSetMode()
253 new CFBBlockCipher(baseEngine, 8 * baseEngine.getBlockSize())); in engineSetMode()
274 ivLength = baseEngine.getBlockSize(); in engineSetMode()
284 ivLength = baseEngine.getBlockSize(); in engineSetMode()
298 ivLength = baseEngine.getBlockSize(); in engineSetMode()
303 ivLength = baseEngine.getBlockSize(); in engineSetMode()
[all …]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DStatFsTest.java24 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE)); in shouldRegisterStats()
35 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE)); in shouldRegisterStatsWithFile()
44 assertThat(statsFs.getBlockSize(), equalTo(ShadowStatFs.BLOCK_SIZE)); in shouldResetStateBetweenTests()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
DPEMDecoder.java275 if ((ps.data.length % bc.getBlockSize()) != 0) in decryptPEM()
277 + bc.getBlockSize()); in decryptPEM()
283 for (int i = 0; i < ps.data.length / bc.getBlockSize(); i++) in decryptPEM()
285 bc.transformBlock(ps.data, i * bc.getBlockSize(), dz, i * bc.getBlockSize()); in decryptPEM()
290 dz = removePadding(dz, bc.getBlockSize()); in decryptPEM()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DCTRMode.java31 blockSize = bc.getBlockSize(); in CTRMode()
43 public final int getBlockSize() in getBlockSize() method in CTRMode
DCBCMode.java30 this.blockSize = tc.getBlockSize(); in CBCMode()
42 public int getBlockSize() in getBlockSize() method in CBCMode
DBlockCipher.java17 public int getBlockSize(); in getBlockSize() method
DNullCipher.java30 public int getBlockSize() in getBlockSize() method in NullCipher
DDESede.java78 public int getBlockSize() in getBlockSize() method in DESede
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
DPaddedBufferedBlockCipher.java36 buf = new byte[cipher.getBlockSize()]; in PaddedBufferedBlockCipher()
188 int blockSize = getBlockSize(); in processBytes()
247 int blockSize = cipher.getBlockSize(); in doFinal()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DDESedeWrapEngine.java163 int blockSize = engine.getBlockSize(); in wrap()
225 final int blockSize = engine.getBlockSize(); in unwrap()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
DTransportConnection.java85 recv_padd_blocksize = bc.getBlockSize(); in changeRecvCipher()
102 send_padd_blocksize = bc.getBlockSize(); in changeSendCipher()
/external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/packet/
DOpen.java93 public int getBlockSize() { in getBlockSize() method in Open
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowStatFs.java24 public int getBlockSize() { in getBlockSize() method in ShadowStatFs
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DCipherOutputStream.java29 this.buf = new byte[cipher.getBlockSize()]; in CipherOutputStream()

12