HomeSort by relevance Sort by last modified time
    Searched refs:authType (Results 1 - 25 of 71) sorted by null

1 2 3

  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 61 public void checkClientTrusted(X509Certificate[] chain, String authType)
65 + "authType=" + authType + " ");
67 assertClientAuthType(authType);
68 trustManager.checkClientTrusted(chain, authType);
76 private void assertClientAuthType(String authType) {
77 if (!StandardNames.CLIENT_AUTH_TYPES.contains(authType)) {
78 throw new AssertionError("Unexpected client auth type " + authType);
82 public void checkServerTrusted(X509Certificate[] chain, String authType)
86 + "authType=" + authType + " ")
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
DummyTrustManager.java 30 public void checkClientTrusted(X509Certificate[] chain, String authType) {
35 public void checkServerTrusted(X509Certificate[] chain, String authType) {
  /libcore/luni/src/main/java/javax/net/ssl/
X509TrustManager.java 36 * @param authType
45 public void checkClientTrusted(X509Certificate[] chain, String authType)
56 * @param authType
65 public void checkServerTrusted(X509Certificate[] chain, String authType)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataProfile.java 37 public final int authType;
56 DataProfile(int profileId, String apn, String protocol, int authType,
63 this.authType = authType;
75 apn.authType, apn.user, apn.password, apn.bearer == 0 ? TYPE_COMMON :
91 pc.writeInt(dps[i].authType);
105 return "DataProfile " + profileId + "/" + apn + "/" + protocol + "/" + authType
ApnSetting.java 45 public final int authType;
91 String user, String password, int authType, String[] types,
106 this.authType = authType;
136 * <mmsc>, <mmsproxy>, <mmsport>, <mcc>, <mnc>, <authtype>,
141 * <mmsc>, <mmsproxy>, <mmsport>, <mcc>, <mnc>, <authtype>,
146 * <mmsc>, <mmsproxy>, <mmsport>, <mcc>, <mnc>, <authtype>,
174 int authType;
176 authType = Integer.parseInt(a[12]);
178 authType = 0
    [all...]
  /frameworks/base/core/java/android/net/http/
X509TrustManagerExtensions.java 60 * description of the chain and authType parameters. The final parameter, host, should be the
66 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
68 return mDelegate.checkServerTrusted(chain, authType, host);
CertificateChainValidator.java 144 * @param authType The authentication type for the cert chain
148 byte[][] certChain, String domain, String authType)
167 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
207 * @param authType The authentication type for the cert chain
211 X509Certificate[] chain, String domain, String authType)
234 trustManager.checkServerTrusted(chain, authType, domain);
236 x509TrustManager.checkServerTrusted(chain, authType);
HttpsConnection.java 92 X509Certificate[] certs, String authType) {
96 X509Certificate[] certs, String authType) {
  /packages/apps/Nfc/src/com/android/nfc/
NfcWifiProtectedSetup.java 144 short authType = payload.getShort();
145 populateAllowedKeyManagement(result.allowedKeyManagement, authType);
161 private static void populateAllowedKeyManagement(BitSet allowedKeyManagement, short authType) {
162 if (authType == AUTH_TYPE_WPA_PSK || authType == AUTH_TYPE_WPA2_PSK) {
164 } else if (authType == AUTH_TYPE_WPA_EAP || authType == AUTH_TYPE_WPA2_EAP) {
166 } else if (authType == AUTH_TYPE_OPEN) {
  /frameworks/base/core/tests/coretests/src/android/net/http/
X509TrustManagerExtensionsTest.java 34 public void checkClientTrusted(X509Certificate[] chain, String authType) {}
36 public void checkServerTrusted(X509Certificate[] chain, String authType) {}
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustManagerImpl.java 201 public void checkClientTrusted(X509Certificate[] chain, String authType)
203 checkTrusted(chain, authType, null, true);
207 public void checkServerTrusted(X509Certificate[] chain, String authType)
209 checkTrusted(chain, authType, null, false);
217 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
219 return checkTrusted(chain, authType, host, false);
236 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
238 return checkTrusted(chain, authType, session.getPeerHost(), false);
249 private List<X509Certificate> checkTrusted(X509Certificate[] chain, String authType,
252 if (chain == null || chain.length == 0 || authType == null || authType.length() == 0)
    [all...]
Platform.java 111 String authType, String host) throws CertificateException {
114 tm.checkServerTrusted(chain, authType, host);
116 x509tm.checkServerTrusted(chain, authType);
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiApConfigStore.java 159 int authType = in.readInt();
160 config.allowedKeyManagement.set(authType);
161 if (authType != KeyMgmt.NONE) {
188 int authType = config.getAuthType();
189 out.writeInt(authType);
190 if(authType != KeyMgmt.NONE) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
HandshakeCompletedEventTest.java 563 private String authType;
565 public void checkClientTrusted(X509Certificate[] chain, String authType) {
567 this.authType = authType;
570 public void checkServerTrusted(X509Certificate[] chain, String authType) {
572 this.authType = authType;
584 return authType;
588 java.security.cert.X509Certificate[] chain, String authType)
594 java.security.cert.X509Certificate[] chain, String authType)
    [all...]
  /external/chromium_org/net/android/java/src/org/chromium/net/
X509Util.java 76 String authType,
90 String authType,
92 mTrustManager.checkServerTrusted(chain, authType);
107 String authType,
109 return mTrustManagerExtensions.checkServerTrusted(chain, authType, host);
424 String authType,
474 authType, host);
478 authType, host);
AndroidNetworkLibrary.java 206 * @param authType The key exchange algorithm name (e.g. RSA).
212 String authType,
215 return X509Util.verifyServerCertificates(certChain, authType, host);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.ecf.ssl_1.1.0.v20130604-1622.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.ecf.ssl_1.1.0.v20130604-1622.jar 
  /frameworks/base/tests/CoreTests/android/core/
SSLSocketTest.java 589 private String authType;
591 public void checkClientTrusted(X509Certificate[] chain, String authType) {
593 this.authType = authType;
596 public void checkServerTrusted(X509Certificate[] chain, String authType) {
598 this.authType = authType;
610 return authType;
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 50 assertEquals(a1.authType, a2.authType);
  /external/conscrypt/src/compat/java/org/conscrypt/
Platform.java 155 String authType, String host) throws CertificateException {
160 tm.checkServerTrusted(chain, authType, host);
163 x509tm.checkServerTrusted(chain, authType);
  /external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/
Main.java 236 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
240 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)
  /frameworks/base/core/java/android/net/
SSLCertificateSocketFactory.java 79 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
80 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLUtils.java 92 public void checkClientTrusted(X509Certificate[] chain, String authType)
99 public void checkServerTrusted(X509Certificate[] chain, String authType)

Completed in 1008 milliseconds

1 2 3