constructor
Şöyle yaparız.
Şöyle yaparız.
getLocalCertificates metodu
Açıklaması şöyle
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
// Get session after the connection is established
SSLSession sslSession = sslSocket.getSession();
getCipherSuite metoduŞöyle yaparız.
System.out.println("\tCipher suite : " + sslSession.getCipherSuite());
Çıktı olarak şunu alırız.
Cipher suite : TLS_DH_anon_WITH_AES_128_GCM_SHA256
Açıklaması şöyle
Şöyle yaparız.Certificate[] getLocalCertificates()Returns the certificate(s) that were sent to the peer during handshaking.Note: This method is useful only when using certificate-based cipher suites.When multiple certificates are available for use in a handshake, the implementation chooses what it considers the "best" certificate chain available, and transmits that to the other side. This method allows the caller to know which certificate chain was actually used.Returns:an ordered array of certificates, with the local certificate first followed by any certificate authorities. If no certificates were sent, then null is returned.
System.out.println(sslSession.getLocalCertificates());
getPeerHost metodu
Şöyle yaparız.
System.out.println(sslSession.getPeerHost());
Çıktı olarak şunu alırız.127.0.0.1
getProtocol metoduŞöyle yaparız.
System.out.println("\tProtocol : " + sslSession.getProtocol());
getSessionContext metoduŞöyle yaparız.
System.out.println("\tSession context : " + sslSession.getSessionContext());
Çıktı olarak şunu alırız.Session context : sun.security.ssl.SSLSessionContextImpl@781df1a4
Hiç yorum yok:
Yorum Gönder