Searched refs:CipherOutputStream (Results 1 – 5 of 5) sorted by relevance
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | CipherOutputStream1Test.java | 44 import javax.crypto.CipherOutputStream; 74 CipherOutputStream cos = new CipherOutputStream(tos){}; in testCipherOutputStream() 90 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite1() 108 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite2() 130 CipherOutputStream cos = new CipherOutputStream(tos, new NullCipher()); in testWrite3() 147 …new CipherOutputStream(new BufferedOutputStream((OutputStream) null), new NullCipher()).write(new … in testWrite4() 159 …CipherOutputStream stream1 = new CipherOutputStream(new BufferedOutputStream((OutputStream) null),… in testWrite5() 160 CipherOutputStream stream2 = new CipherOutputStream(stream1, cf); in testWrite5() 161 CipherOutputStream stream3 = new CipherOutputStream(stream2, nc); in testWrite5() 173 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 91 public CipherOutputStream(OutputStream os, Cipher c) { in CipherOutputStream() method in CipherOutputStream 106 protected CipherOutputStream(OutputStream os) { in CipherOutputStream() method in CipherOutputStream
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
D | CipherOutputStreamTest.java | 29 import javax.crypto.CipherOutputStream; 70 CipherOutputStream cos = new CipherOutputStream(new ByteArrayOutputStream(), cipher); in testDecryptCorruptGCM()
|
/libcore/ |
D | openjdk_java_files.mk | 1214 ojluni/src/main/java/javax/crypto/CipherOutputStream.java \
|