Searched defs:session (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/javax/net/ssl/
H A DHostnameVerifier.java52 * @param session SSLSession used on the connection to host
55 public boolean verify(String hostname, SSLSession session); argument
H A DSSLSessionBindingEvent.java62 * @param session the SSLSession acting as the source of the event
64 * @exception IllegalArgumentException if <code>session</code> is null.
66 public SSLSessionBindingEvent(SSLSession session, String name) argument
68 super(session);
H A DHandshakeCompletedEvent.java37 * this event class provides direct access to some important session
54 private transient SSLSession session; field in class:HandshakeCompletedEvent
65 session = s;
70 * Returns the session that triggered this event.
76 return session;
81 * Returns the cipher suite in use by the session which was produced
85 * @return the name of the cipher suite negotiated during this session.
89 return session.getCipherSuite();
113 return session.getLocalCertificates();
119 * of defining the session
[all...]
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DHttpsURLConnectionTest.java111 public boolean verify(String hostname, SSLSession session) { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DHttpsURLConnectionTest.java321 public boolean verify(String hostname, SSLSession session) { argument
322 if (hostname == session.getPeerHost()) {
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
H A DHttpsURLConnectionTest.java75 * The content of the response to be sent during HTTPS session.
778 public boolean verify(String hostname, SSLSession session) { argument
781 + session.getPeerHost());
/libcore/luni/src/test/java/libcore/java/net/
H A DURLConnectionTest.java2906 * Test that we can inspect the SSL session after connect().
3149 public boolean verify(String hostname, SSLSession session) { argument

Completed in 157 milliseconds