HomeSort by relevance Sort by last modified time
    Searched refs:CipherInputStream (Results 1 - 25 of 26) sorted by null

1 2

  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStreamTest.java 27 import javax.crypto.CipherInputStream;
33 * @tests javax.crypto.CipherInputStream#read(byte[] b, int off, int len)
37 CipherInputStream stream = new CipherInputStream(null, new NullCipher());
47 * @tests javax.crypto.CipherInputStream#close()
52 new CipherInputStream(new ByteArrayInputStream(new byte[] { 1 }),
59 new CipherInputStream(new BufferedInputStream((InputStream) null),
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStreamTest.java 27 import javax.crypto.CipherInputStream;
33 * javax.crypto.CipherInputStream#read(byte[] b, int off, int len)
37 CipherInputStream stream = new CipherInputStream(null, new NullCipher());
47 * javax.crypto.CipherInputStream#close()
52 new CipherInputStream(new ByteArrayInputStream(new byte[] { 1 }),
59 new CipherInputStream(new BufferedInputStream((InputStream) null),
CipherInputStream1Test.java 35 import javax.crypto.CipherInputStream;
60 * CipherInputStream(InputStream is) method testing. Tests that
61 * CipherInputStream uses NullCipher if Cipher is not specified
67 CipherInputStream cis = new CipherInputStream(tis){};
87 CipherInputStream cis = new CipherInputStream(tis, new NullCipher());
108 CipherInputStream cis = new CipherInputStream(tis, new NullCipher());
146 CipherInputStream cis = new CipherInputStream(tis, new NullCipher())
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 51 * CipherInputStream(InputStream is) method testing. Tests that
52 * CipherInputStream uses NullCipher if Cipher is not specified
58 CipherInputStream cis = new CipherInputStream(tis);
78 CipherInputStream cis = new CipherInputStream(tis, new NullCipher());
99 CipherInputStream cis = new CipherInputStream(tis, new NullCipher());
137 CipherInputStream cis = new CipherInputStream(tis, new NullCipher())
    [all...]
  /libcore/luni/src/test/java/libcore/javax/crypto/
CipherInputStreamTest.java 27 import javax.crypto.CipherInputStream;
100 InputStream cin = new CipherInputStream(in, cipher);
108 InputStream in = new CipherInputStream(new ByteArrayInputStream(aesCipherText), cipher);
121 InputStream in = new CipherInputStream(
133 InputStream in = new CipherInputStream(
145 InputStream in = new CipherInputStream(new ByteArrayInputStream(aesCipherText), cipher);
153 InputStream in = new CipherInputStream(new ByteArrayInputStream(rc4CipherText), cipher);
161 InputStream in = new CipherInputStream(new ByteArrayInputStream(aesCipherText), cipher);
178 InputStream is = new CipherInputStream(new ByteArrayInputStream(new byte[31]), cipher);
186 InputStream is = new CipherInputStream(null, cipher)
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java 28 import javax.crypto.CipherInputStream;
39 * CipherInputStream benchmark.
80 InputStream is = new CipherInputStream(new ByteArrayInputStream(DATA), cipherEncrypt);
  /libcore/luni/src/main/java/javax/crypto/
CipherInputStream.java 33 * by a {@code CipherInputStream}. For example, if a cipher initialized for
34 * decryption is used with a {@code CipherInputStream}, the {@code
35 * CipherInputStream} tries to read the data an decrypt them before returning.
37 public class CipherInputStream extends FilterInputStream {
46 * Creates a new {@code CipherInputStream} instance for an {@code
50 * {@code CipherInputStream}. All read operations on such a stream will
58 public CipherInputStream(InputStream is, Cipher c) {
69 * Creates a new {@code CipherInputStream} instance for an {@code
77 protected CipherInputStream(InputStream is) {
180 * Closes this {@code CipherInputStream}, also closes the underlying inpu
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
FilterInputStreamNullSourceTest.java 33 import javax.crypto.CipherInputStream;
49 InputStream in = new CipherInputStream(null, new NullCipher());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/
BcKeyStoreSpi.java 34 import javax.crypto.CipherInputStream;
237 CipherInputStream cIn = new CipherInputStream(dIn, cipher);
256 cIn = new CipherInputStream(dIn, cipher);
277 cIn = new CipherInputStream(dIn, cipher);
997 CipherInputStream cIn = new CipherInputStream(dIn, cipher);
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 148 import javax.crypto.CipherInputStream;
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 1274 milliseconds

1 2