Searched refs:checkServerTrusted (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/security/net/config/
H A DRootTrustManager.java37 * {@link #checkServerTrusted(X509Certificate[], String String)} must be used instead of the normal
78 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) method in class:RootTrustManager
88 config.getTrustManager().checkServerTrusted(certs, authType, socket);
90 // Not an SSLSocket, use the hostname unaware checkServerTrusted.
91 checkServerTrusted(certs, authType);
96 public void checkServerTrusted(X509Certificate[] certs, String authType, SSLEngine engine) method in class:RootTrustManager
104 config.getTrustManager().checkServerTrusted(certs, authType, engine);
108 public void checkServerTrusted(X509Certificate[] certs, String authType) method in class:RootTrustManager
113 + " checkServerTrusted(X509Certificate[], String, String) is used");
116 config.getTrustManager().checkServerTrusted(cert
124 public List<X509Certificate> checkServerTrusted(X509Certificate[] certs, String authType, method in class:RootTrustManager
[all...]
H A DNetworkSecurityTrustManager.java85 public void checkServerTrusted(X509Certificate[] certs, String authType) method in class:NetworkSecurityTrustManager
87 checkServerTrusted(certs, authType, (String) null);
91 public void checkServerTrusted(X509Certificate[] certs, String authType, Socket socket) method in class:NetworkSecurityTrustManager
99 public void checkServerTrusted(X509Certificate[] certs, String authType, SSLEngine engine) method in class:NetworkSecurityTrustManager
107 * Hostname aware version of {@link #checkServerTrusted(X509Certificate[], String)}.
111 public List<X509Certificate> checkServerTrusted(X509Certificate[] certs, String authType, method in class:NetworkSecurityTrustManager
113 List<X509Certificate> trustedChain = mDelegate.checkServerTrusted(certs, authType, host);
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java36 * The checkServerTrusted method allows callers to perform additional
66 // Check that the hostname aware checkServerTrusted is present.
68 mCheckServerTrusted = tm.getClass().getMethod("checkServerTrusted",
74 + " checkServerTrusted(X509Certificate[], String, String, String) missing");
90 * <p>See {@link X509TrustManager#checkServerTrusted(X509Certificate[], String)} for a
97 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType, method in class:X509TrustManagerExtensions
100 return mDelegate.checkServerTrusted(chain, authType, host);
106 throw new CertificateException("Failed to call checkServerTrusted", e);
114 throw new CertificateException("checkServerTrusted failed", e.getCause());
122 * <p>Since {@link X509TrustManager#checkServerTrusted} ma
[all...]
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DX509TrustManagerExtensionsTest.java36 public void checkServerTrusted(X509Certificate[] chain, String authType) {} method in class:X509TrustManagerExtensionsTest.NotATrustManagerImpl
/frameworks/base/core/java/android/net/
H A DSSLCertificateSocketFactory.java80 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DOSUSocketFactory.java235 public void checkServerTrusted(X509Certificate[] chain, String authType) method in class:OSUSocketFactory.WFATrustManager

Completed in 303 milliseconds