Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

gnu.javax.net.ssl.provider
Class Finished  view Finished download Finished.java

java.lang.Object
  extended bygnu.javax.net.ssl.provider.Finished
All Implemented Interfaces:
Constructed, Handshake.Body

final class Finished
extends java.lang.Object
implements Handshake.Body


Field Summary
private  byte[] md5
          SSLv3 message digest pair.
private  byte[] sha
          SSLv3 message digest pair.
private  byte[] verifyData
          TLSv1.x verify data.
 
Constructor Summary
(package private) Finished(byte[] verifyData)
           
(package private) Finished(byte[] md5, byte[] sha)
           
 
Method Summary
(package private)  byte[] getMD5Hash()
           
(package private)  byte[] getSHAHash()
           
(package private)  byte[] getVerifyData()
           
(package private) static Finished read(java.io.InputStream in, CipherSuite suite)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 void write(java.io.OutputStream out)
          Writes this structure's encoded form to the given output stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

verifyData

private final byte[] verifyData
TLSv1.x verify data.


md5

private final byte[] md5
SSLv3 message digest pair.


sha

private final byte[] sha
SSLv3 message digest pair.

Constructor Detail

Finished

Finished(byte[] verifyData)

Finished

Finished(byte[] md5,
         byte[] sha)
Method Detail

read

static Finished read(java.io.InputStream in,
                     CipherSuite suite)
              throws java.io.IOException

write

public void write(java.io.OutputStream out)
           throws java.io.IOException
Description copied from interface: Constructed
Writes this structure's encoded form to the given output stream.

Specified by:
write in interface Constructed

getVerifyData

byte[] getVerifyData()

getMD5Hash

byte[] getMD5Hash()

getSHAHash

byte[] getSHAHash()

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).