HomeSort by relevance Sort by last modified time
    Searched defs:localCertificates (Results 1 - 18 of 18) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Handshake.java 38 private final List<Certificate> localCertificates;
41 String cipherSuite, List<Certificate> peerCertificates, List<Certificate> localCertificates) {
44 this.localCertificates = localCertificates;
61 Certificate[] localCertificates = session.getLocalCertificates();
62 List<Certificate> localCertificatesList = localCertificates != null
63 ? Util.immutableList(localCertificates)
70 String cipherSuite, List<Certificate> peerCertificates, List<Certificate> localCertificates) {
73 Util.immutableList(localCertificates));
94 public List<Certificate> localCertificates() {
    [all...]
Cache.java 556 List<Certificate> localCertificates = readCertificateList(source);
557 handshake = Handshake.get(cipherSuite, peerCertificates, localCertificates);
609 writeCertList(sink, handshake.localCertificates());
  /external/conscrypt/common/src/main/java/org/conscrypt/
ActiveSession.java 46 private X509Certificate[] localCertificates;
194 return localCertificates == null ? null : localCertificates.clone();
230 if (localCertificates != null && localCertificates.length > 0) {
231 return localCertificates[0].getSubjectX500Principal();
305 this.localCertificates = ssl.getLocalCertificates();
NativeSsl.java 60 private X509Certificate[] localCertificates;
120 return localCertificates;
234 localCertificates = keyManager.getCertificateChain(alias);
235 if (localCertificates == null) {
238 int numLocalCerts = localCertificates.length;
239 PublicKey publicKey = (numLocalCerts > 0) ? localCertificates[0].getPublicKey() : null;
244 encodedLocalCerts[i] = localCertificates[i].getEncoded();
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 125 Certificate[] localCertificates = httpsUrlConnection.getLocalCertificates();
129 nullSafeImmutableList(localCertificates));
248 List<Certificate> localCertificates = javaSecureCacheResponse.getLocalCertificateChain();
249 if (localCertificates == null) {
250 localCertificates = Collections.emptyList();
253 javaSecureCacheResponse.getCipherSuite(), peerCertificates, localCertificates);
304 List<Certificate> certificates = handshake.localCertificates();
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
JavaApiConverterTest.java 161 final List<Certificate> localCertificates = Arrays.<Certificate>asList(LOCAL_CERT);
183 return localCertificates;
218 assertEquals(localCertificates, handshake.localCertificates());
573 assertEquals(handshake.localCertificates(), javaCacheResponse.getLocalCertificateChain());
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 699 Certificate[] localCertificates = request.getSslLocalCertificates();
701 Arrays.equals(serverCertificates, localCertificates));
703 localCertificates = connection.getLocalCertificates();
706 Arrays.equals(serverCertificates, localCertificates));
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.2/
okhttp-2.7.2.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.3.0/
okhttp-3.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp3/okhttp/3.4.1/
okhttp-3.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.7.4/
okhttp-2.7.4.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-r1.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.1.0-robolectric-r4458339.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 

Completed in 132 milliseconds