/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/smack/src/org/jivesoftware/smack/sasl/ |
SASLExternalMechanism.java | 38 * <li>javax.net.ssl.trustStore to the location of the trustStore
39 * <li>javax.net.ssl.trustStorePassword to the the password of the trustStore
|
/external/smack/src/org/jivesoftware/smack/ |
ServerTrustManager.java | 39 * by configuring the {@link ConnectionConfiguration}. The truststore file that contains 54 private KeyStore trustStore; 67 trustStore = stores.get(options); 70 trustStore = KeyStore.getInstance(options.getType()); 72 trustStore.load(in, options.getPassword().toCharArray()); 74 trustStore = null; 85 stores.put(options, trustStore); 87 if (trustStore == null) 143 trusted = trustStore.getCertificateAlias(x509Certificates[nSize - 1]) != null;
|
AndroidConnectionConfiguration.java | 60 String path = System.getProperty("javax.net.ssl.trustStore");
|
ConnectionConfiguration.java | 201 // Build the default path to the cacert truststore file. By default we are 290 * @return the path to the truststore file. 297 * Sets the path to the trust store file. The truststore file contains the root 301 * @param truststorePath the path to the truststore file. 329 * @return the password to use to access the truststore file. 339 * @param truststorePassword the password to use to access the truststore file.
|
/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 182 final KeyStore truststore, 196 if (truststore != null) { 197 trustmanagers = createTrustManagers(truststore); 208 final KeyStore truststore) 211 this(TLS, keystore, keystorePassword, truststore, null, null); 220 public SSLSocketFactory(final KeyStore truststore) 223 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/crypto/src/main/java/org/conscrypt/ |
DefaultSSLContextImpl.java | 99 // find TrustStore, TrustManagers 100 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/smack/asmack-master/static-src/custom/org/jivesoftware/smack/ |
AndroidConnectionConfiguration.java | 60 String path = System.getProperty("javax.net.ssl.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...] |
/prebuilts/sdk/10/ |
android.jar | |
/prebuilts/sdk/15/ |
android.jar | |
/prebuilts/sdk/8/ |
android.jar | |