MCPcopy
hub / github.com/openwrt/luci / display_session_id

Method display_session_id

libs/nixio/axTLS/samples/java/axssl.java:749–759  ·  view source on GitHub ↗

Display what session id we have.

(SSL ssl)

Source from the content-addressed store, hash-verified

747 * Display what session id we have.
748 */
749 private void display_session_id(SSL ssl)
750 {
751 byte[] session_id = ssl.getSessionId();
752
753 if (session_id.length > 0)
754 {
755 System.out.println("-----BEGIN SSL SESSION PARAMETERS-----");
756 bytesToHex(session_id);
757 System.out.println("-----END SSL SESSION PARAMETERS-----");
758 }
759 }
760}

Callers 2

do_serverMethod · 0.95
do_clientMethod · 0.95

Calls 2

bytesToHexMethod · 0.95
getSessionIdMethod · 0.80

Tested by

no test coverage detected