/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/ |
H A D | DefaultHostnameVerifier.java | 29 import javax.net.ssl.SSLSession; 42 public boolean verify(String hostname, SSLSession session) {
|
/openjdk7/jdk/src/share/classes/javax/net/ssl/ |
H A D | ExtendedSSLSession.java | 29 * Extends the <code>SSLSession</code> interface to support additional 34 public abstract class ExtendedSSLSession implements SSLSession {
|
H A D | HostnameVerifier.java | 52 * @param session SSLSession used on the connection to host 55 public boolean verify(String hostname, SSLSession session);
|
H A D | SSLSessionBindingEvent.java | 34 * When a listener object is bound or unbound to an SSLSession by 35 * {@link SSLSession#putValue(String, Object)} 36 * or {@link SSLSession#removeValue(String)}, objects which 41 * @see SSLSession 62 * @param session the SSLSession acting as the source of the event 66 public SSLSessionBindingEvent(SSLSession session, String name) 84 * Returns the SSLSession into which the listener is being bound or 87 * @return the <code>SSLSession</code> 89 public SSLSession getSession() 91 return (SSLSession) getSourc [all...] |
H A D | SSLSessionContext.java | 34 * <code>SSLSession</code>s associated with a single entity. For example, 51 * @see SSLSession 60 * Returns the <code>SSLSession</code> bound to the specified session id. 63 * @return the <code>SSLSession</code> or null if 64 * the specified session id does not refer to a valid SSLSession. 68 public SSLSession getSession(byte[] sessionId); 79 * Sets the timeout limit for <code>SSLSession</code> objects grouped 85 * <code>SSLSession</code> object is invalidated and future connections 100 * Returns the timeout limit of <code>SSLSession</code> objects grouped 106 * <code>SSLSession</cod [all...] |
H A D | HandshakeCompletedEvent.java | 37 * result is captured through an "SSLSession" object. As a convenience, 46 * @see SSLSession 55 private transient SSLSession session; 61 * @param s the SSLSession this event is associated with 63 public HandshakeCompletedEvent(SSLSocket sock, SSLSession s) 73 * @return the <code>SSLSession</code> for this handshake 75 public SSLSession getSession()
|
H A D | SSLSession.java | 66 public interface SSLSession { interface 349 * It is mainly used as a hint for <code>SSLSession</code> caching 364 * It is mainly used as a hint for <code>SSLSession</code> caching
|
H A D | SSLSocket.java | 368 * @return the <code>SSLSession</code> 370 public abstract SSLSession getSession(); 374 * Returns the {@code SSLSession} being constructed during a SSL/TLS 378 * an instance of this class, but before the {@code SSLSession} has 385 * This method provides early access to the {@code SSLSession} being 390 * method of {@code SSLSession} will throw a 399 * @see SSLSession 406 * create a basic SSLSession. Otherwise, this method returns the 407 * {@code SSLSession} currently being negotiated. 413 public SSLSession getHandshakeSessio [all...] |
H A D | SSLEngine.java | 137 * SSLSession is established. Application data can not be sent during 195 * SSLSession#getPacketBufferSize()} and {@link 196 * SSLSession#getApplicationBufferSize()} should be used to determine 206 * Applications should call {@link SSLSession#getApplicationBufferSize()} 210 * application should call {@link SSLSession#getPacketBufferSize()} to ensure 364 * @see SSLSession 948 * Returns the <code>SSLSession</code> in use in this 964 * @return the <code>SSLSession</code> for this <code>SSLEngine</code> 965 * @see SSLSession 967 public abstract SSLSession getSessio [all...] |
H A D | HttpsURLConnection.java | 201 public boolean verify(String hostname, SSLSession session) {
|
/openjdk7/jdk/test/com/sun/net/httpserver/ |
H A D | DummyVerifier.java | 29 public boolean verify (String s, SSLSession s1) {
|
/openjdk7/jdk/src/share/classes/javax/naming/ldap/ |
H A D | StartTlsResponse.java | 29 import javax.net.ssl.SSLSession; 60 * SSLSession session = tls.negotiate(); 161 public abstract SSLSession negotiate() throws IOException; 193 public abstract SSLSession negotiate(SSLSocketFactory factory)
|
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/ |
H A D | AcceptLargeFragments.java | 44 import javax.net.ssl.SSLSession; 59 SSLSession cliSession = cliEngine.getSession(); 60 SSLSession srvSession = srvEngine.getSession();
|
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/ |
H A D | HttpsExchange.java | 48 * Get the SSLSession for this exchange. 49 * @return the SSLSession 51 public abstract SSLSession getSSLSession ();
|
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/ |
H A D | NotifyHandshakeTestHeyYou.java | 33 public SSLSession ssls;
|
H A D | NotifyHandshakeTest.java | 53 SSLSession sess; 139 SSLSession heyYouSess = heyYou.ssls;
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | SSLSessionContextImpl.java | 37 import javax.net.ssl.SSLSession; 42 import javax.net.ssl.SSLSession; 66 * Returns the <code>SSLSession</code> bound to the specified session id. 68 public SSLSession getSession(byte[] sessionId) { 93 * Sets the timeout limit for cached <code>SSLSession</code> objects 113 * Gets the timeout limit for cached <code>SSLSession</code> objects 121 * <code>SSLSession</code> objects. 137 * <code>SSLSession</code> objects. 172 // cache a SSLSession 192 // package-private method, remove a cached SSLSession [all...] |
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/ |
H A D | SessionTimeOutTests.java | 124 SSLSession sessions [] = new SSLSession [serverConns]; 171 SSLSession sess = sslSockets[nConnections].getSession(); 189 SSLSession session = (SSLSession) sessions.elementAt(i); 226 SSLSession nextSess = null; 227 SSLSession sess; 229 sess = (SSLSession)sessions.elementAt(i);
|
H A D | SessionCacheSizeTests.java | 126 SSLSession sessions [] = new SSLSession [serverConns]; 173 SSLSession sess = sslSockets[nConnections].getSession(); 209 SSLSession sess = sslSockets[nConnections].getSession(); 228 SSLSession sess;
|
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/ |
H A D | StartTlsResponseImpl.java | 44 import javax.net.ssl.SSLSession; 176 public SSLSession negotiate() throws IOException { 211 public SSLSession negotiate(SSLSocketFactory factory) throws IOException { 225 SSLSession sslSession = startHandshake(factory).getSession(); 398 * @param session the SSLSession used on the connection to host. 402 private boolean verify(String hostname, SSLSession session) 466 private static Principal getPeerPrincipal(SSLSession session)
|
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/AppInputStream/ |
H A D | ReadZeroBytes.java | 94 SSLSession sess = sslSocket.getSession(); 133 SSLSession sess = sslSocket.getSession();
|
/openjdk7/jdk/test/sun/security/ssl/sanity/pluggability/ |
H A D | MySSLEngineImpl.java | 69 public SSLSession getSession() { return null; }
|
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/ |
H A D | DelegateHttpsURLConnection.java | 114 public boolean verify(String hostname, javax.net.ssl.SSLSession session) { 145 private Principal getPeerPrincipal(javax.net.ssl.SSLSession session)
|
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/ |
H A D | CookieHttpsClientTest.java | 42 import javax.net.ssl.SSLSession; 133 public boolean verify(String hostname, SSLSession session) {
|
H A D | HttpsCreateSockTest.java | 41 import javax.net.ssl.SSLSession; 213 public boolean verify(String hostname, SSLSession session) {
|