Home | History | Annotate | Download | only in jsse

Lines Matching refs:session_id

45     byte[] session_id;
61 * @param session_id
66 byte[] session_id, CipherSuite cipher_suite, byte compression_method) {
73 this.session_id = session_id;
77 length = 38 + session_id.length;
92 session_id = new byte[size];
93 in.read(session_id, 0, size);
98 this.length = 38 + session_id.length;
113 out.writeUint8(session_id.length);
114 out.write(session_id);
117 length = 38 + session_id.length;