java.lang.Object
gnu.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)
|
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.
Finished
Finished(byte[] verifyData)
Finished
Finished(byte[] md5,
byte[] sha)
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())
.