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

1 2

  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestTrustManager.java 59 public void checkClientTrusted(X509Certificate[] chain, String authType)
63 + "authType=" + authType + " ");
65 assertClientAuthType(authType);
66 trustManager.checkClientTrusted(chain, authType);
74 private void assertClientAuthType(String authType) {
75 if (!StandardNames.CLIENT_AUTH_TYPES.contains(authType)) {
76 throw new AssertionError("Unexpected client auth type " + authType);
80 public void checkServerTrusted(X509Certificate[] chain, String authType)
84 + "authType=" + authType + " ")
    [all...]
  /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/base/telephony/java/com/android/internal/telephony/
ApnSetting.java 35 public final int authType;
57 String user, String password, int authType, String[] types,
70 this.authType = authType;
88 * <mmsport>, <user>, <password>, <authtype>, <mcc>,<mnc>,
93 * <mmsport>, <user>, <password>, <authtype>, <mcc>, <mnc>,
118 int authType;
120 authType = Integer.parseInt(a[12]);
122 authType = 0;
152 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,bearer)
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Sta_Management/
authSm.c 218 pHandle->authType = AUTH_LEGACY_NONE;
259 if (pHandle->authType == AUTH_LEGACY_NONE)
261 TRACE0(pHandle->hReport, REPORT_SEVERITY_ERROR, "auth_start: pHandle->authType == AUTH_LEGACY_NONE\n");
265 switch (pHandle->authType)
275 TRACE0(pHandle->hReport, REPORT_SEVERITY_ERROR, "auth_start: pHandle->authType unknown.\n");
307 if (pHandle->authType == AUTH_LEGACY_NONE)
317 switch (pHandle->authType)
361 if (pHandle->authType == AUTH_LEGACY_NONE)
367 switch (pHandle->authType)
423 pParam->content.authLegacyAuthType = pHandle->authType;
    [all...]
authSm.h 73 legacyAuthType_e authType;
openAuthSm.c 225 if ((pHandle->authType==AUTH_LEGACY_RESERVED1) && (authAlgo !=AUTH_LEGACY_RESERVED1))
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnection.java 92 int authType = mApn.authType;
93 if (authType == -1) {
94 authType = TextUtils.isEmpty(mApn.user) ? RILConstants.SETUP_DATA_AUTH_NONE
109 Integer.toString(authType),
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 156 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
158 checkTrusted(chain, authType);
161 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)
163 checkTrusted(chain, authType);
174 private void checkTrusted(X509Certificate[] chain, String authType)
176 if (chain == null || chain.length == 0 || authType == null || authType.length() == 0) {
DigitalSignature.java 71 public DigitalSignature(String authType) {
75 if ("RSA".equals(authType)) {
79 } else if ("DSA".equals(authType)) {
ClientHandshakeImpl.java 505 String authType = clientKey.getAlgorithm();
506 DigitalSignature ds = new DigitalSignature(authType);
509 if ("RSA".equals(authType)) {
512 } else if ("DSA".equals(authType)) {
515 // } else if ("DH".equals(authType)) {
528 String authType = session.cipherSuite.getAuthType(serverKeyExchange != null);
529 if (authType == null) {
533 parameters.getTrustManager().checkServerTrusted(serverCert.certs, authType);
ServerHandshakeImpl.java 145 String authType = clientCert.getAuthType();
148 clientCert.certs, authType);
171 String authType = clientCert.getAuthType();
172 DigitalSignature ds = new DigitalSignature(authType);
177 if ("RSA".equals(authType)) {
180 } else if ("DSA".equals(authType)) {
183 // } else if ("DH".equals(authType)) {
504 DigitalSignature ds = new DigitalSignature(cipher_suite.authType);
CipherSuite.java 46 final String authType;
    [all...]
OpenSSLSocketImpl.java 600 String authType = peerCertificateChain[0].getPublicKey().getAlgorithm();
602 authType);
    [all...]
  /frameworks/base/core/java/android/net/http/
CertificateChainValidator.java 108 * @param authType The authentication type for the cert chain
112 byte[][] certChain, String domain, String authType)
125 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
148 * @param authType The authentication type for the cert chain
152 X509Certificate[] chain, String domain, String authType)
171 SSLParametersImpl.getDefaultTrustManager().checkServerTrusted(chain, authType);
HttpsConnection.java 92 X509Certificate[] certs, String authType) {
96 X509Certificate[] certs, String authType) {
  /frameworks/base/wifi/java/android/net/wifi/
WifiApConfigStore.java 154 int authType = in.readInt();
155 config.allowedKeyManagement.set(authType);
156 if (authType != KeyMgmt.NONE) {
183 int authType = config.getAuthType();
184 out.writeInt(authType);
185 if(authType != KeyMgmt.NONE) {
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
HandshakeCompletedEventTest.java 566 private String authType;
568 public void checkClientTrusted(X509Certificate[] chain, String authType) {
570 this.authType = authType;
573 public void checkServerTrusted(X509Certificate[] chain, String authType) {
575 this.authType = authType;
587 return authType;
591 java.security.cert.X509Certificate[] chain, String authType)
597 java.security.cert.X509Certificate[] chain, String authType)
    [all...]
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 37 assertEquals(a1.authType, a2.authType);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.ssl_1.0.0.v20100529-0735.jar 
org.eclipse.help.base_3.5.2.v201011171123.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/base/core/java/android/net/
SSLCertificateSocketFactory.java 77 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
78 public void checkServerTrusted(X509Certificate[] certs, String authType) { }
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainTestActivity.java 308 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
311 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 355 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
359 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) {
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 191 String apn, String user, String password, String authType,

Completed in 1035 milliseconds

1 2