Searched defs:checkServerTrusted (Results 1 - 5 of 5) sorted by relevance

/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/http/
H A DX509TrustManagerExtensions.java35 * The checkServerTrusted method allows callers to perform additional
65 // Check that the hostname aware checkServerTrusted is present.
67 mCheckServerTrusted = tm.getClass().getMethod("checkServerTrusted",
73 + " checkServerTrusted(X509Certificate[], String, String, String) missing");
89 * <p>See {@link X509TrustManager#checkServerTrusted(X509Certificate[], String)} for a
96 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType, method in class:X509TrustManagerExtensions
99 return mDelegate.checkServerTrusted(chain, authType, host);
105 throw new CertificateException("Failed to call checkServerTrusted", e);
113 throw new CertificateException("checkServerTrusted failed", e.getCause());
121 * <p>Since {@link X509TrustManager#checkServerTrusted} ma
[all...]
/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/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DOsuServerConnection.java164 public void checkServerTrusted(X509Certificate[] chain, String authType) method in class:OsuServerConnection.WFATrustManager
167 Log.v(TAG, "checkServerTrusted " + authType);

Completed in 130 milliseconds