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

123

/openjdk7/jdk/src/share/classes/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.java38 * this event class provides direct access to some important session
55 private transient SSLSession session; field in class:HandshakeCompletedEvent
66 session = s;
71 * Returns the session that triggered this event.
77 return session;
82 * Returns the cipher suite in use by the session which was produced
86 * @return the name of the cipher suite negotiated during this session.
90 return session.getCipherSuite();
114 return session.getLocalCertificates();
120 * of defining the session
[all...]
H A DHttpsURLConnection.java103 * as part of defining the session.
122 * defining the session.
201 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DDefaultHostnameVerifier.java42 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/InputRecord/
H A DClientHelloRead.java190 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DPostThruProxy.java199 public boolean verify(String hostname, SSLSession session) { argument
H A DB6216082.java161 public boolean verify(String hostname, SSLSession session) { argument
H A DCloseKeepAliveCached.java195 public boolean verify(String hostname, SSLSession session) { argument
H A DHttpsPost.java185 public boolean verify(String hostname, SSLSession session) { argument
H A DPostThruProxyWithAuth.java194 public boolean verify(String hostname, SSLSession session) { argument
H A DRedirect.java179 public boolean verify(String hostname, SSLSession session) { argument
H A DRetryHttps.java177 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11KeyFactory.java92 Session[] session = new Session[1];
95 return (T)implGetPublicKeySpec(p11Key, keySpec, session);
97 return (T)implGetPrivateKeySpec(p11Key, keySpec, session);
102 session[0] = token.releaseSession(session[0]);
142 Session[] session) throws PKCS11Exception, InvalidKeySpecException;
145 Session[] session) throws PKCS11Exception, InvalidKeySpecException;
141 implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session) argument
144 implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session) argument
H A DP11DHKeyFactory.java182 Session session = null;
184 session = token.getObjSession();
185 long keyID = token.p11.C_CreateObject(session.id(), attributes);
187 (session, keyID, "DH", p.bitLength(), attributes);
189 token.releaseSession(session);
204 Session session = null;
206 session = token.getObjSession();
207 long keyID = token.p11.C_CreateObject(session.id(), attributes);
209 (session, keyID, "DH", p.bitLength(), attributes);
211 token.releaseSession(session);
215 implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session) argument
237 implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session) argument
[all...]
H A DP11DSAKeyFactory.java177 Session session = null;
179 session = token.getObjSession();
180 long keyID = token.p11.C_CreateObject(session.id(), attributes);
182 (session, keyID, "DSA", p.bitLength(), attributes);
184 token.releaseSession(session);
200 Session session = null;
202 session = token.getObjSession();
203 long keyID = token.p11.C_CreateObject(session.id(), attributes);
205 (session, keyID, "DSA", p.bitLength(), attributes);
207 token.releaseSession(session);
211 implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session) argument
235 implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session) argument
[all...]
H A DP11RSAKeyFactory.java200 Session session = null;
202 session = token.getObjSession();
203 long keyID = token.p11.C_CreateObject(session.id(), attributes);
205 (session, keyID, "RSA", n.bitLength(), attributes);
207 token.releaseSession(session);
222 Session session = null;
224 session = token.getObjSession();
225 long keyID = token.p11.C_CreateObject(session.id(), attributes);
227 (session, keyID, "RSA", n.bitLength(), attributes);
229 token.releaseSession(session);
263 implGetPublicKeySpec(P11Key key, Class keySpec, Session[] session) argument
283 implGetPrivateKeySpec(P11Key key, Class keySpec, Session[] session) argument
[all...]
H A DSession.java37 * A session object. Sessions are obtained via the SessionManager,
39 * this class, the id() method to obtain the session id.
52 // session id
55 // number of objects created within this session
58 // time this session was last used
99 // XXX update statistics in session manager if n == 1
118 "Internal error: close session with active objects");
154 // handle to the native session
158 SessionRef(Session session, long id, Token token) { argument
159 super(session, refQueu
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java114 public boolean verify(String hostname, javax.net.ssl.SSLSession session) { argument
118 if (session.getCipherSuite().startsWith("TLS_KRB5")) {
120 HostnameChecker.getServerName(getPeerPrincipal(session));
123 Certificate[] serverChain = session.getPeerCertificates();
143 * Get the peer principal from the session
145 private Principal getPeerPrincipal(javax.net.ssl.SSLSession session) argument
150 principal = session.getPeerPrincipal();
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/ProtocolVersion/
H A DHttpsProtocols.java164 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsClient/
H A DProxyAuthTest.java178 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/www/protocol/https/HttpsURLConnection/
H A DCriticalSubjectAltName.java264 public boolean verify(String hostname, SSLSession session) { argument
H A DGetResponseCode.java252 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DJavaxHTTPSConnection.java248 public boolean verify(String hostname, SSLSession session) { argument
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/ext/
H A DStartTlsResponseImpl.java166 * Negotiates a TLS session using the default SSL socket factory.
170 * @return The negotiated SSL session
172 * the TLS session.
182 * Negotiates a TLS session using an SSL socket factory.
186 * and returns the negotiated session information.
205 * @return The negotiated SSL session
207 * the TLS session.
398 * @param session the SSLSession used on the connection to host.
402 private boolean verify(String hostname, SSLSession session) argument
416 if (session
466 getPeerPrincipal(SSLSession session) argument
[all...]

Completed in 98 milliseconds

123