Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
jsse.jar Source Code Files - OpenJDK 7u Release
Where Can I get source code files of jsse.jar?
✍: FYIcenter
You can get source code files of jsse.jar (JSSE) from OpenJDK GitHub Website in the src/share/classes/sun/security/ssl/ directory.
You can also browse JSSE Source Code files below:
⏎ sun/security/ssl/EngineWriter.java
/* * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package sun.security.ssl; import javax.net.ssl.*; import java.io.IOException; import java.nio.ByteBuffer; import java.util.LinkedList; import javax.net.ssl.SSLEngineResult.HandshakeStatus; import sun.misc.HexDumpEncoder; /** * A class to help abstract away SSLEngine writing synchronization. */ final class EngineWriter { /* * Outgoing handshake Data waiting for a ride is stored here. * Normal application data is written directly into the outbound * buffer, but handshake data can be written out at any time, * so we have buffer it somewhere. * * When wrap is called, we first check to see if there is * any data waiting, then if we're in a data transfer state, * we try to write app data. * * This will contain either ByteBuffers, or the marker * HandshakeStatus.FINISHED to signify that a handshake just completed. */ private LinkedList<Object> outboundList; private boolean outboundClosed = false; /* Class and subclass dynamic debugging support */ private static final Debug debug = Debug.getInstance("ssl"); EngineWriter() { outboundList = new LinkedList<Object>(); } /* * Upper levels assured us we had room for at least one packet of data. * As per the SSLEngine spec, we only return one SSL packets worth of * data. */ private HandshakeStatus getOutboundData(ByteBuffer dstBB) { Object msg = outboundList.removeFirst(); assert(msg instanceof ByteBuffer); ByteBuffer bbIn = (ByteBuffer) msg; assert(dstBB.remaining() >= bbIn.remaining()); dstBB.put(bbIn); /* * If we have more data in the queue, it's either * a finished message, or an indication that we need * to call wrap again. */ if (hasOutboundDataInternal()) { msg = outboundList.getFirst(); if (msg == HandshakeStatus.FINISHED) { outboundList.removeFirst(); // consume the message return HandshakeStatus.FINISHED; } else { return HandshakeStatus.NEED_WRAP; } } else { return null; } } /* * Properly orders the output of the data written to the wrap call. * This is only handshake data, application data goes through the * other writeRecord. */ synchronized void writeRecord(EngineOutputRecord outputRecord, MAC writeMAC, CipherBox writeCipher) throws IOException { /* * Only output if we're still open. */ if (outboundClosed) { throw new IOException("writer side was already closed."); } outputRecord.write(writeMAC, writeCipher); /* * Did our handshakers notify that we just sent the * Finished message? * * Add an "I'm finished" message to the queue. */ if (outputRecord.isFinishedMsg()) { outboundList.addLast(HandshakeStatus.FINISHED); } } /* * Output the packet info. */ private void dumpPacket(EngineArgs ea, boolean hsData) { try { HexDumpEncoder hd = new HexDumpEncoder(); ByteBuffer bb = ea.netData.duplicate(); int pos = bb.position(); bb.position(pos - ea.deltaNet()); bb.limit(pos); System.out.println("[Raw write" + (hsData ? "" : " (bb)") + "]: length = " + bb.remaining()); hd.encodeBuffer(bb, System.out); } catch (IOException e) { } } /* * Properly orders the output of the data written to the wrap call. * Only app data goes through here, handshake data goes through * the other writeRecord. * * Shouldn't expect to have an IOException here. * * Return any determined status. */ synchronized HandshakeStatus writeRecord( EngineOutputRecord outputRecord, EngineArgs ea, MAC writeMAC, CipherBox writeCipher) throws IOException { /* * If we have data ready to go, output this first before * trying to consume app data. */ if (hasOutboundDataInternal()) { HandshakeStatus hss = getOutboundData(ea.netData); if (debug != null && Debug.isOn("packet")) { /* * We could have put the dump in * OutputRecord.write(OutputStream), but let's actually * output when it's actually output by the SSLEngine. */ dumpPacket(ea, true); } return hss; } /* * If we are closed, no more app data can be output. * Only existing handshake data (above) can be obtained. */ if (outboundClosed) { throw new IOException("The write side was already closed"); } outputRecord.write(ea, writeMAC, writeCipher); if (debug != null && Debug.isOn("packet")) { dumpPacket(ea, false); } /* * No way new outbound handshake data got here if we're * locked properly. * * We don't have any status we can return. */ return null; } /* * We already hold "this" lock, this is the callback from the * outputRecord.write() above. We already know this * writer can accept more data (outboundClosed == false), * and the closure is sync'd. */ void putOutboundData(ByteBuffer bytes) { outboundList.addLast(bytes); } /* * This is for the really rare case that someone is writing from * the *InputRecord* before we know what to do with it. */ synchronized void putOutboundDataSync(ByteBuffer bytes) throws IOException { if (outboundClosed) { throw new IOException("Write side already closed"); } outboundList.addLast(bytes); } /* * Non-synch'd version of this method, called by internals */ private boolean hasOutboundDataInternal() { return (outboundList.size() != 0); } synchronized boolean hasOutboundData() { return hasOutboundDataInternal(); } synchronized boolean isOutboundDone() { return outboundClosed && !hasOutboundDataInternal(); } synchronized void closeOutbound() { outboundClosed = true; } }
⏎ sun/security/ssl/EngineWriter.java
Or download all of them as a single archive file:
File name: sun-security-ssl-openjdk7u-fyi.zip File size: 277845 bytes Release date: 2012-05-03 Download
⇒ What Is jsse.jar (JDK 6) Java Secure Socket Extension
⇐ Downloading jsse.jar (JDK 7) Java Secure Socket Extension
2018-02-01, 8680👍, 0💬
Popular Posts:
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
JRE 5 sunjce_provider.jar is the JAR file for JRE 5 Sun JCE Provider, which provides implementations...
Where Can I see Java Source Code files for Xerces Java 2.11.2? Here are Java Source Code files for X...
JDK 11 jdk.internal.JVM Stat.jmod is the JMOD file for JDK 11 Internal Jvmstat module. JDK 11 Intern...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...