OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CipherInputStream
(Results
1 - 25
of
29
) 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/ojluni/src/main/java/javax/crypto/
CipherInputStream.java
31
* A
CipherInputStream
is composed of an InputStream and a Cipher so
35
* a
CipherInputStream
.
38
*
CipherInputStream
will attempt to read in data and decrypt them,
55
*
CipherInputStream
.
66
public class
CipherInputStream
extends FilterInputStream {
130
* Constructs a
CipherInputStream
from an InputStream and a
138
public
CipherInputStream
(InputStream is, Cipher c) {
145
* Constructs a
CipherInputStream
from an InputStream without
147
*
CipherInputStream
using a NullCipher.
152
protected
CipherInputStream
(InputStream is)
[
all
...]
/libcore/benchmarks/src/benchmarks/regression/
CipherInputStreamBenchmark.java
24
import javax.crypto.
CipherInputStream
;
30
*
CipherInputStream
benchmark.
72
InputStream is = new
CipherInputStream
(new ByteArrayInputStream(DATA), cipherEncrypt);
/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
159
import javax.crypto.
CipherInputStream
;
[
all
...]
/libcore/
openjdk_java_files.mk
[
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/23/
android.jar
/prebuilts/sdk/24/
android.jar
/prebuilts/sdk/4/
android.jar
/prebuilts/sdk/5/
android.jar
/prebuilts/sdk/8/
android.jar
/prebuilts/sdk/9/
android.jar
/prebuilts/sdk/system_23/
android.jar
Completed in 612 milliseconds
1
2