OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:truststore
(Results
1 - 10
of
10
) sorted by null
/external/apache-harmony/x-net/src/test/impl/java/org/apache/harmony/xnet/tests/provider/jsse/
TrustManagerFactoryImplTest.java
44
String def_keystore = System.getProperty("javax.net.ssl.
trustStore
");
45
System.setProperty("javax.net.ssl.
trustStore
", "abc");
52
System.clearProperty("javax.net.ssl.
trustStore
");
54
System.setProperty("javax.net.ssl.
trustStore
", def_keystore);
/external/apache-http/src/org/apache/http/conn/ssl/
SSLSocketFactory.java
69
* a {@link KeyStore
truststore
} file containg one or several trusted
76
* Use JDK keytool utility to import a trusted certificate and generate a
truststore
file:
78
* keytool -import -alias "my server cert" -file server.crt -keystore my.
truststore
175
final KeyStore
truststore
,
189
if (
truststore
!= null) {
190
trustmanagers = createTrustManagers(
truststore
);
201
final KeyStore
truststore
)
204
this(TLS, keystore, keystorePassword,
truststore
, null, null);
213
public SSLSocketFactory(final KeyStore
truststore
)
216
this(TLS, null, null,
truststore
, null, null)
[
all
...]
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactory.java
75
* a {@link KeyStore
truststore
} file containg one or several trusted
82
* Use JDK keytool utility to import a trusted certificate and generate a
truststore
file:
84
* keytool -import -alias "my server cert" -file server.crt -keystore my.
truststore
181
final KeyStore
truststore
,
195
if (
truststore
!= null) {
196
trustmanagers = createTrustManagers(
truststore
);
207
final KeyStore
truststore
)
210
this(TLS, keystore, keystorePassword,
truststore
, null, null);
219
public SSLSocketFactory(final KeyStore
truststore
)
222
this(TLS, null, null,
truststore
, null, null)
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DefaultSSLContextImpl.java
103
// find
TrustStore
, TrustManagers
104
String keystore = System.getProperty("javax.net.ssl.
trustStore
");
/external/nist-sip/java/gov/nist/core/net/
SslNetworkLayer.java
78
KeyStore
trustStore
= KeyStore.getInstance(keyStoreType);
80
trustStore
.load(new FileInputStream(trustStoreFile), keyStorePassword);
81
tmFactory.init(
trustStore
);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/
SipStackImpl.java
406
* Default is <it>NULL</it>. If left undefined the keyStore and
trustStore
will
417
* properties.setProperty("javax.net.ssl.
trustStore
", "<trustStoreFileName location>");
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java
712
System.setProperty("javax.net.ssl.
trustStore
", getKeyStoreFileName());
[
all
...]
/prebuilt/sdk/10/
android.jar
/prebuilt/sdk/8/
android.jar
Completed in 303 milliseconds