Searched refs:CipherOutputStream (Results 1 – 4 of 4) sorted by relevance
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | CipherOutputStream1Test.java | 38 import javax.crypto.CipherOutputStream; 67 CipherOutputStream cos = new CipherOutputStream(tos){}; in testCipherOutputStream() 83 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite1() 101 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite2() 123 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite3() 140 …new CipherOutputStream(new BufferedOutputStream((OutputStream) null), new NullCipher()).write(new … in testWrite4() 152 …CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null),… in testWrite5() 153 CipherOutputStream stream2 = new CipherOutputStream(stream1, cf); in testWrite5() 154 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc); in testWrite5() 166 CipherOutputStream cos = new CipherOutputStream(tos){}; in testFlush() [all …]
|
D | CipherOutputStreamTest.java | 22 import javax.crypto.CipherOutputStream; 32 new CipherOutputStream((OutputStream) null, Cipher in test_close() 39 CipherOutputStream ch = new CipherOutputStream((OutputStream) null) {}; in test_close() 41 new CipherOutputStream(ch, Cipher in test_close()
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | CipherOutputStream.java | 63 public class CipherOutputStream extends FilterOutputStream { class 88 public CipherOutputStream(OutputStream os, Cipher c) { in CipherOutputStream() method in CipherOutputStream 103 protected CipherOutputStream(OutputStream os) { in CipherOutputStream() method in CipherOutputStream
|
/libcore/ |
D | openjdk_java_files.mk | 918 ojluni/src/main/java/javax/crypto/CipherOutputStream.java \
|