Searched refs:getUnderlyingCipher (Results 1 - 14 of 14) sorted by relevance

/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DBrokenJCEBlockCipher.java122 String name = cipher.getUnderlyingCipher().getAlgorithmName();
152 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher());
156 ivLength = cipher.getUnderlyingCipher().getBlockSize();
158 new CBCBlockCipher(cipher.getUnderlyingCipher()));
162 ivLength = cipher.getUnderlyingCipher().getBlockSize();
168 new OFBBlockCipher(cipher.getUnderlyingCipher(), wordSize));
173 new OFBBlockCipher(cipher.getUnderlyingCipher(), 8 * cipher.getBlockSize()));
178 ivLength = cipher.getUnderlyingCipher().getBlockSize();
184 new CFBBlockCipher(cipher.getUnderlyingCipher(), wordSize));
189 new CFBBlockCipher(cipher.getUnderlyingCipher(),
[all...]
H A DJCEBlockCipher.java142 String name = cipher.getUnderlyingCipher().getAlgorithmName();
281 cipher = new BufferedBlockCipher(cipher.getUnderlyingCipher());
286 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher());
290 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher(), new ZeroBytePadding());
294 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher(), new ISO10126d2Padding());
298 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher(), new X923Padding());
302 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher(), new ISO7816d4Padding());
306 cipher = new PaddedBufferedBlockCipher(cipher.getUnderlyingCipher(), new TBCPadding());
311 cipher = new CTSBlockCipher(cipher.getUnderlyingCipher());
372 param = PBE.Util.makePBEParameters(k, params, cipher.getUnderlyingCipher()
[all...]
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/
H A DBufferedAsymmetricBlockCipher.java30 public AsymmetricBlockCipher getUnderlyingCipher() method in class:BufferedAsymmetricBlockCipher
H A DBufferedBlockCipher.java66 public BlockCipher getUnderlyingCipher() method in class:BufferedBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/modes/
H A DCTSBlockCipher.java222 BlockCipher c = ((CBCBlockCipher)cipher).getUnderlyingCipher();
239 BlockCipher c = ((CBCBlockCipher)cipher).getUnderlyingCipher();
H A DOFBBlockCipher.java45 public BlockCipher getUnderlyingCipher() method in class:OFBBlockCipher
H A DSICBlockCipher.java42 public BlockCipher getUnderlyingCipher() method in class:SICBlockCipher
H A DCBCBlockCipher.java43 public BlockCipher getUnderlyingCipher() method in class:CBCBlockCipher
H A DCFBBlockCipher.java46 public BlockCipher getUnderlyingCipher() method in class:CFBBlockCipher
H A DGOFBBlockCipher.java55 public BlockCipher getUnderlyingCipher() method in class:GOFBBlockCipher
H A DCCMBlockCipher.java48 public BlockCipher getUnderlyingCipher() method in class:CCMBlockCipher
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
H A DPKCS1Encoding.java47 public AsymmetricBlockCipher getUnderlyingCipher() method in class:PKCS1Encoding
H A DISO9796d1Encoding.java35 public AsymmetricBlockCipher getUnderlyingCipher() method in class:ISO9796d1Encoding
H A DOAEPEncoding.java56 public AsymmetricBlockCipher getUnderlyingCipher() method in class:OAEPEncoding

Completed in 96 milliseconds