/external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/ |
D | TestTrustManager.java | 65 private static void assertClientAuthType(String authType) { in assertClientAuthType() argument 66 if (!StandardNames.CLIENT_AUTH_TYPES.contains(authType)) { in assertClientAuthType() 67 throw new AssertionError("Unexpected client auth type " + authType); in assertClientAuthType() 71 private static void assertServerAuthType(String authType) { in assertServerAuthType() argument 72 if (!StandardNames.SERVER_AUTH_TYPES.contains(authType)) { in assertServerAuthType() 73 throw new AssertionError("Unexpected server auth type " + authType); in assertServerAuthType() 86 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 90 + "authType=" + authType + " "); in checkClientTrusted() 92 assertClientAuthType(authType); in checkClientTrusted() 93 trustManager.checkClientTrusted(chain, authType); in checkClientTrusted() [all …]
|
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/javax/net/ssl/ |
D | TestTrustManager.java | 67 private static void assertClientAuthType(String authType) { in assertClientAuthType() argument 68 if (!StandardNames.CLIENT_AUTH_TYPES.contains(authType)) { in assertClientAuthType() 69 throw new AssertionError("Unexpected client auth type " + authType); in assertClientAuthType() 73 private static void assertServerAuthType(String authType) { in assertServerAuthType() argument 74 if (!StandardNames.SERVER_AUTH_TYPES.contains(authType)) { in assertServerAuthType() 75 throw new AssertionError("Unexpected server auth type " + authType); in assertServerAuthType() 88 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 92 + "authType=" + authType + " "); in checkClientTrusted() 94 assertClientAuthType(authType); in checkClientTrusted() 95 trustManager.checkClientTrusted(chain, authType); in checkClientTrusted() [all …]
|
/external/conscrypt/platform/src/main/java/org/conscrypt/ |
D | Platform.java | 196 X509Certificate[] chain, String authType, Class<?> argumentClass, in checkTrusted() argument 202 method.invoke(tm, chain, authType, argumentInstance); in checkTrusted() 214 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 218 x509etm.checkClientTrusted(chain, authType, socket); in checkClientTrusted() 219 } else if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket) in checkClientTrusted() 220 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class, in checkClientTrusted() 222 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 226 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument 230 x509etm.checkServerTrusted(chain, authType, socket); in checkServerTrusted() 231 } else if (!checkTrusted("checkServerTrusted", tm, chain, authType, Socket.class, socket) in checkServerTrusted() [all …]
|
/external/conscrypt/repackaged/platform/src/main/java/com/android/org/conscrypt/ |
D | Platform.java | 197 X509Certificate[] chain, String authType, Class<?> argumentClass, in checkTrusted() argument 203 method.invoke(tm, chain, authType, argumentInstance); in checkTrusted() 215 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 219 x509etm.checkClientTrusted(chain, authType, socket); in checkClientTrusted() 220 } else if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket) in checkClientTrusted() 221 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class, in checkClientTrusted() 223 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 227 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument 231 x509etm.checkServerTrusted(chain, authType, socket); in checkServerTrusted() 232 } else if (!checkTrusted("checkServerTrusted", tm, chain, authType, Socket.class, socket) in checkServerTrusted() [all …]
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | TrustManagerImpl.java | 266 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 268 checkTrusted(chain, authType, null, null, true /* client auth */); in checkClientTrusted() 274 public List<X509Certificate> checkClientTrusted(X509Certificate[] chain, String authType, in checkClientTrusted() argument 276 return checkTrusted(chain, null /* ocspData */, null /* tlsSctData */, authType, hostname, in checkClientTrusted() 290 public void checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) in checkClientTrusted() argument 299 checkTrusted(chain, authType, session, parameters, true /* client auth */); in checkClientTrusted() 303 public void checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) in checkClientTrusted() argument 309 checkTrusted(chain, authType, session, engine.getSSLParameters(), true /* client auth */); in checkClientTrusted() 313 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument 315 checkTrusted(chain, authType, null, null, false /* client auth */); in checkServerTrusted() [all …]
|
D | ConscryptFileDescriptorSocket.java | 430 String authType = peerCertChain[0].getPublicKey().getAlgorithm(); in verifyCertificateChain() local 431 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this); in verifyCertificateChain()
|
D | ConscryptEngine.java | 1644 String authType = peerCertChain[0].getPublicKey().getAlgorithm(); 1645 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this);
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | TrustManagerImpl.java | 272 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument 274 checkTrusted(chain, authType, null, null, true /* client auth */); in checkClientTrusted() 280 public List<X509Certificate> checkClientTrusted(X509Certificate[] chain, String authType, in checkClientTrusted() argument 282 return checkTrusted(chain, null /* ocspData */, null /* tlsSctData */, authType, hostname, in checkClientTrusted() 297 public void checkClientTrusted(X509Certificate[] chain, String authType, Socket socket) in checkClientTrusted() argument 306 checkTrusted(chain, authType, session, parameters, true /* client auth */); in checkClientTrusted() 311 public void checkClientTrusted(X509Certificate[] chain, String authType, SSLEngine engine) in checkClientTrusted() argument 317 checkTrusted(chain, authType, session, engine.getSSLParameters(), true /* client auth */); in checkClientTrusted() 321 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument 323 checkTrusted(chain, authType, null, null, false /* client auth */); in checkServerTrusted() [all …]
|
D | ConscryptFileDescriptorSocket.java | 430 String authType = peerCertChain[0].getPublicKey().getAlgorithm(); in verifyCertificateChain() local 431 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this); in verifyCertificateChain()
|
D | ConscryptEngine.java | 1640 String authType = peerCertChain[0].getPublicKey().getAlgorithm(); 1641 Platform.checkClientTrusted(x509tm, peerCertChain, authType, this);
|
/external/conscrypt/android/src/main/java/org/conscrypt/ |
D | Platform.java | 397 X509Certificate[] chain, String authType, Class<?> argumentClass, in checkTrusted() argument 403 method.invoke(tm, chain, authType, argumentInstance); in checkTrusted() 420 String authType, AbstractConscryptSocket socket) throws CertificateException { in checkClientTrusted() argument 421 if (!checkTrusted("checkClientTrusted", tm, chain, authType, Socket.class, socket) in checkClientTrusted() 422 && !checkTrusted("checkClientTrusted", tm, chain, authType, String.class, in checkClientTrusted() 424 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 430 String authType, AbstractConscryptSocket socket) throws CertificateException { in checkServerTrusted() argument 431 if (!checkTrusted("checkServerTrusted", tm, chain, authType, Socket.class, socket) in checkServerTrusted() 432 && !checkTrusted("checkServerTrusted", tm, chain, authType, String.class, in checkServerTrusted() 434 tm.checkServerTrusted(chain, authType); in checkServerTrusted() [all …]
|
/external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/ |
D | Platform.java | 304 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 308 x509etm.checkClientTrusted(chain, authType, socket); in checkClientTrusted() 310 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 315 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument 319 x509etm.checkServerTrusted(chain, authType, socket); in checkServerTrusted() 321 tm.checkServerTrusted(chain, authType); in checkServerTrusted() 326 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 330 x509etm.checkClientTrusted(chain, authType, engine); in checkClientTrusted() 332 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 337 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument [all …]
|
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | Platform.java | 303 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 307 x509etm.checkClientTrusted(chain, authType, socket); in checkClientTrusted() 309 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 314 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument 318 x509etm.checkServerTrusted(chain, authType, socket); in checkServerTrusted() 320 tm.checkServerTrusted(chain, authType); in checkServerTrusted() 325 static void checkClientTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkClientTrusted() argument 329 x509etm.checkClientTrusted(chain, authType, engine); in checkClientTrusted() 331 tm.checkClientTrusted(chain, authType); in checkClientTrusted() 336 static void checkServerTrusted(X509TrustManager tm, X509Certificate[] chain, String authType, in checkServerTrusted() argument [all …]
|
/external/apache-http/android/src/android/net/http/ |
D | CertificateChainValidator.java | 147 byte[][] certChain, String domain, String authType) in verifyServerCertificates() argument 166 return verifyServerDomainAndCertificates(serverCertificates, domain, authType); in verifyServerCertificates() 210 X509Certificate[] chain, String domain, String authType) in verifyServerDomainAndCertificates() argument 238 method.invoke(x509TrustManager, chain, authType, domain); in verifyServerDomainAndCertificates() 240 x509TrustManager.checkServerTrusted(chain, authType); in verifyServerDomainAndCertificates()
|
D | HttpsConnection.java | 91 X509Certificate[] certs, String authType) { in initializeEngine() 95 X509Certificate[] certs, String authType) { in initializeEngine()
|
/external/okhttp/android/src/test/java/com/squareup/okhttp/internal/ |
D | PlatformTest.java | 110 @Override public void checkClientTrusted(X509Certificate[] chain, String authType) 115 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) {
|
/external/okhttp/okcurl/src/main/java/com/squareup/okhttp/curl/ |
D | Main.java | 249 @Override public void checkClientTrusted(X509Certificate[] chain, String authType) in createInsecureSslSocketFactory() 253 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) in createInsecureSslSocketFactory()
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
D | MockWebServer.java | 65 @Override public void checkClientTrusted(X509Certificate[] chain, String authType) 70 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
D | TelephonyManagerFacade.java | 983 @RpcParameter(name = "authType") Integer authType, in telephonyGetIccSimChallengeResponse() 986 SubscriptionManager.getDefaultSubscriptionId(), appType, authType, hexChallenge); in telephonyGetIccSimChallengeResponse() 994 @RpcParameter(name = "authType") Integer authType, in telephonyGetIccSimChallengeResponseForSubscription() 999 … String b64Result = mTelephonyManager.getIccAuthentication(subId, appType, authType, b64Data); in telephonyGetIccSimChallengeResponseForSubscription()
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
D | MockWebServer.java | 96 @Override public void checkClientTrusted(X509Certificate[] chain, String authType) 101 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) {
|
/external/conscrypt/repackaged/common/src/test/java/com/android/org/conscrypt/javax/net/ssl/ |
D | SSLSocketVersionCompatibilityTest.java | 806 public void checkClientTrusted(X509Certificate[] chain, String authType) in test_SSLSocket_TrustManagerRuntimeException() 811 public void checkServerTrusted(X509Certificate[] chain, String authType) in test_SSLSocket_TrustManagerRuntimeException()
|
/external/conscrypt/common/src/test/java/org/conscrypt/javax/net/ssl/ |
D | SSLSocketVersionCompatibilityTest.java | 804 public void checkClientTrusted(X509Certificate[] chain, String authType) in test_SSLSocket_TrustManagerRuntimeException() 809 public void checkServerTrusted(X509Certificate[] chain, String authType) in test_SSLSocket_TrustManagerRuntimeException()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | URLConnectionTest.java | 3426 public void checkClientTrusted(X509Certificate[] chain, String authType) 3431 public void checkServerTrusted(X509Certificate[] chain, String authType)
|
/external/guice/extensions/struts2/lib/ |
D | jetty-6.1.0.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mortbay/
org/ ... |