HomeSort by relevance Sort by last modified time
    Searched refs:authType (Results 1 - 25 of 39) 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/core/java/android/net/http/
X509TrustManagerExtensions.java 56 * description of the chain and authType parameters. The final parameter, host, should be the
62 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
64 return mDelegate.checkServerTrusted(chain, authType, host);
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)
174 trustManager.checkServerTrusted(chain, authType, domain);
176 x509TrustManager.checkServerTrusted(chain, authType);
HttpsConnection.java 92 X509Certificate[] certs, String authType) {
96 X509Certificate[] certs, String authType) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
ApnSetting.java 38 public final int authType;
60 String user, String password, int authType, String[] types,
73 this.authType = authType;
91 * <mmsport>, <user>, <password>, <authtype>, <mcc>,<mnc>,
96 * <mmsport>, <user>, <password>, <authtype>, <mcc>, <mnc>,
119 int authType;
121 authType = Integer.parseInt(a[12]);
123 authType = 0;
153 a[9],a[4],a[5],authType,typeArray,protocol,roamingProtocol,carrierEnabled,bearer)
    [all...]
DataConnection.java 428 int authType = mApnSetting.authType;
429 if (authType == -1) {
430 authType = TextUtils.isEmpty(mApnSetting.user) ? RILConstants.SETUP_DATA_AUTH_NONE
445 Integer.toString(authType),
    [all...]
  /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) {}
  /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 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...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImpl.java 185 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
187 checkTrusted(chain, authType, null, true);
190 @Override public void checkServerTrusted(X509Certificate[] chain, String authType)
192 checkTrusted(chain, authType, null, false);
200 public List<X509Certificate> checkServerTrusted(X509Certificate[] chain, String authType,
202 return checkTrusted(chain, authType, host, false);
213 private List<X509Certificate> checkTrusted(X509Certificate[] chain, String authType,
216 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 504 String authType = clientKey.getAlgorithm();
505 DigitalSignature ds = new DigitalSignature(authType);
508 if ("RSA".equals(authType)) {
511 } else if ("DSA".equals(authType)) {
514 // } else if ("DH".equals(authType)) {
527 String authType = session.cipherSuite.getAuthType(serverKeyExchange != null);
528 if (authType == null) {
542 tm.checkServerTrusted(serverCert.certs, authType, hostname);
544 x509tm.checkServerTrusted(serverCert.certs, authType);
ServerHandshakeImpl.java 144 String authType = clientCert.getAuthType();
147 clientCert.certs, authType);
170 String authType = clientCert.getAuthType();
171 DigitalSignature ds = new DigitalSignature(authType);
176 if ("RSA".equals(authType)) {
179 } else if ("DSA".equals(authType)) {
182 // } else if ("DH".equals(authType)) {
503 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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 39 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 
org.eclipse.ecf.provider.filetransfer.httpclient_4.0.0.v20100529-0735.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 79 public void checkClientTrusted(X509Certificate[] certs, String authType) { }
80 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 360 @Override public void checkClientTrusted(X509Certificate[] chain, String authType)
364 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipCommandInterface.java 241 String apn, String user, String password, String authType,

Completed in 431 milliseconds

1 2