- java.lang.Object
-
- net.luminis.tls.handshake.HandshakeMessage
-
- net.luminis.tls.handshake.FinishedMessage
-
public class FinishedMessage extends HandshakeMessage
https://datatracker.ietf.org/doc/html/rfc8446#section-4.4.4
-
-
Constructor Summary
Constructors Constructor Description FinishedMessage()FinishedMessage(byte[] hmac)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]getBytes()TlsConstants.HandshakeTypegetType()byte[]getVerifyData()FinishedMessageparse(java.nio.ByteBuffer buffer, int length)-
Methods inherited from class net.luminis.tls.handshake.HandshakeMessage
findPositionLastExtension, parseHandshakeHeader
-
-
-
-
Method Detail
-
getType
public TlsConstants.HandshakeType getType()
- Specified by:
getTypein classHandshakeMessage
-
parse
public FinishedMessage parse(java.nio.ByteBuffer buffer, int length) throws DecodeErrorException
- Throws:
DecodeErrorException
-
getBytes
public byte[] getBytes()
- Specified by:
getBytesin classHandshakeMessage
-
getVerifyData
public byte[] getVerifyData()
-
-