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

1 2 3

  /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...]
  /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...]
  /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 109 * @param authType The authentication type for the cert chain
113 byte[][] certChain, String domain, String authType)
132 return verifyServerDomainAndCertificates(serverCertificates, domain, authType);
155 * @param authType The authentication type for the cert chain
159 X509Certificate[] chain, String domain, String authType)
181 trustManager.checkServerTrusted(chain, authType, domain);
183 x509TrustManager.checkServerTrusted(chain, 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)
  /libcore/luni/src/test/java/tests/api/javax/net/ssl/
X509TrustManagerTest.java 62 * javax.net.ssl.X509TrustManager#checkClientTrusted(X509Certificate[] chain, String authType)
76 * javax.net.ssl.X509TrustManager#checkClientTrusted(X509Certificate[] chain, String authType)
85 * javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[] chain, String authType)
119 * javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[] chain, String authType)
133 * javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[] chain, String authType)
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...]
  /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) {
  /device/sample/etc/
apns-full-conf.xml 71 authtype="1"
118 authtype="1"
187 authtype="1"
197 authtype="1"
226 authtype="1"
246 authtype="1"
256 authtype="1"
269 authtype="1"
402 authtype="1"
412 authtype="1
    [all...]
  /device/lge/mako/
apns-full-conf.xml 302 authtype="2"
315 authtype="2"
327 authtype="2"
715 authtype="1"
730 authtype="2"
909 authtype="1"
987 authtype="1"
1284 authtype="1"
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.h 69 enum AuthType {
83 AuthType mAuthType;
  /libcore/crypto/src/main/java/org/conscrypt/
ClientHandshakeImpl.java 516 String authType = clientKey.getAlgorithm();
517 DigitalSignature ds = new DigitalSignature(authType);
520 if ("RSA".equals(authType)) {
523 } else if ("DSA".equals(authType)) {
526 // } else if ("DH".equals(authType)) {
539 String authType = session.cipherSuite.getAuthType(serverKeyExchange != null);
540 if (authType == null) {
554 tm.checkServerTrusted(serverCert.certs, authType, hostname);
556 x509tm.checkServerTrusted(serverCert.certs, authType);
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) {
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);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 39 assertEquals(a1.authType, a2.authType);
  /external/ipsec-tools/src/racoon/
proposal.c 512 newtr->authtype = tr1->authtype;
594 if (tr1->authtype != tr2->authtype) {
596 "authtype mismatched: "
598 s_ipsecdoi_attr_v(IPSECDOI_ATTR_AUTH, tr2->authtype),
599 s_ipsecdoi_attr_v(IPSECDOI_ATTR_AUTH, tr1->authtype));
668 newtr->authtype = a->alg;
693 newtr->authtype = b->alg;
718 newtr->authtype = IPSECDOI_ATTR_AUTH_NONE; /*no auth*
    [all...]
isakmp_xauth.h 63 int authtype; member in struct:xauth_state
  /external/chromium_org/net/android/java/src/org/chromium/net/
AndroidNetworkLibrary.java 204 * @param authType The key exchange algorithm name (e.g. RSA)
208 public static int verifyServerCertificates(byte[][] certChain, String authType) {
210 return X509Util.verifyServerCertificates(certChain, authType);
X509Util.java 234 public static int verifyServerCertificates(byte[][] certChain, String authType)
274 sDefaultTrustManager.checkServerTrusted(serverCertificates, authType);
278 sTestTrustManager.checkServerTrusted(serverCertificates, authType);
  /external/chromium_org/chrome/browser/resources/print_preview/
native_layer.js 120 * @param {string} authType type of access token.
122 startGetAccessToken: function(authType) {
123 chrome.send('getAccessToken', [authType]);
580 * @param {string} authType Type of access token.
584 onDidGetAccessToken_: function(authType, accessToken) {
587 getAccessTokenEvent.authType = authType;
  /external/chromium_org/third_party/WebKit/ManualTests/blackberry/
video-load-with-authentication.html 19 <pre>AuthType &lt;Basic|Digest&gt;
  /external/openssh/
auth-sia.c 99 ent->authtype = SIA_A_NONE;
  /external/tcpdump/
print-telnet.c 79 static const char *authtype[] = { variable
178 (void)printf(" %s", STR_OR_ID(c, authtype));
  /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...]

Completed in 586 milliseconds

1 2 3