HomeSort by relevance Sort by last modified time
    Searched defs:getPeerPrincipal (Results 1 - 25 of 59) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/net/
SecureCacheResponse.java 72 * @see #getPeerPrincipal()
91 public abstract Principal getPeerPrincipal()
105 * @see #getPeerPrincipal()
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SecureCacheResponseTest.java 61 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/ojluni/src/main/java/javax/net/ssl/
HandshakeCompletedEvent.java 129 * @see #getPeerPrincipal()
155 * @see #getPeerPrincipal()
179 public Principal getPeerPrincipal()
184 principal = session.getPeerPrincipal();
204 * @see #getPeerPrincipal()
SSLSession.java 229 * @see #getPeerPrincipal()
275 * @see #getPeerPrincipal()
296 public Principal getPeerPrincipal()
308 * @see #getPeerPrincipal()
HttpsURLConnection.java 116 * @see #getPeerPrincipal()
144 public Principal getPeerPrincipal()
169 * @see #getPeerPrincipal()
  /libcore/ojluni/src/main/java/sun/security/ssl/
KerberosClientKeyExchange.java 139 public Principal getPeerPrincipal(){
140 return impl.getPeerPrincipal();
ServerHandshaker.java 482 previous.getPeerPrincipal();
    [all...]
  /external/apache-http/android/src/android/net/http/
DelegatingSSLSession.java 113 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/ojluni/src/main/java/sun/net/www/protocol/https/
AbstractDelegateHttpsURLConnection.java 282 Principal getPeerPrincipal()
286 return ((SecureCacheResponse)cachedResponse).getPeerPrincipal();
292 return (((HttpsClient)http).getPeerPrincipal());
  /libcore/support/src/test/java/libcore/javax/net/ssl/
FakeSSLSession.java 79 public Principal getPeerPrincipal() {
  /external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
HttpsURLConnectionTest.java 42 con.getPeerPrincipal();
SSLSessionBindingEventTest.java 135 * @see javax.net.ssl.SSLSession#getPeerPrincipal()
137 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLExtendedSessionImpl.java 144 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
145 return delegate.getPeerPrincipal();
SSLNullSession.java 118 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
OpenSSLSessionImpl.java 271 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
FakeSSLSession.java 85 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLSessionBindingEventTest.java 175 * @see javax.net.ssl.SSLSession#getPeerPrincipal()
177 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
HttpsURLConnectionTest.java 131 * javax.net.ssl.HttpsURLConnection#getPeerPrincipal()
137 connection.getPeerPrincipal();
143 Principal p = con.getPeerPrincipal();
149 Principal p = con.getPeerPrincipal();
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLSessionImplTest.java 71 session.getPeerPrincipal();
72 fail("getPeerPrincipal: No expected SSLPeerUnverifiedException");
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
JavaApiConverter.java 317 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/benchmarks/src/benchmarks/regression/
HostnameVerifierBenchmark.java 138 public Principal getPeerPrincipal() {
  /libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
mySSLSession.java 113 public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
JavaApiConverterTest.java 190 @Override public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
473 assertEquals(SERVER_CERT.getSubjectX500Principal(), httpsUrlConnection.getPeerPrincipal());
576 assertEquals(handshake.peerPrincipal(), javaCacheResponse.getPeerPrincipal());
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DelegatingHttpsURLConnection.java 77 @Override public Principal getPeerPrincipal() throws SSLPeerUnverifiedException {
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLSessionTest.java 199 s.invalid.getPeerPrincipal();
204 s.server.getPeerPrincipal();
208 assertNotNull(s.client.getPeerPrincipal());
209 assertNotNull(s.client.getPeerPrincipal().getName());
210 TestSSLContext.assertCertificateInKeyStore(s.client.getPeerPrincipal(),

Completed in 577 milliseconds

1 2 3