Package net.i2p.router.crypto.ratchet
Interface RatchetPayload.PayloadCallback
-
- Enclosing class:
- RatchetPayload
public static interface RatchetPayload.PayloadCallback
For all callbacks, recommend throwing exceptions only from the handshake. Exceptions will get thrown out of processPayload() and prevent processing of succeeding blocks.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
gotDateTime(long time)
void
gotGarlic(GarlicClove clove)
void
gotNextKey(NextSessionKey nextKey)
void
gotOptions(byte[] options, boolean isHandshake)
void
gotPadding(int paddingLength, int frameLength)
For stats.void
gotTermination(int reason, long lastReceived)
void
gotUnknown(int type, int len)
-
-
-
Method Detail
-
gotDateTime
void gotDateTime(long time) throws DataFormatException
- Throws:
DataFormatException
-
gotGarlic
void gotGarlic(GarlicClove clove)
-
gotOptions
void gotOptions(byte[] options, boolean isHandshake) throws DataFormatException
- Parameters:
isHandshake
- true only for message 3 part 2- Throws:
DataFormatException
-
gotTermination
void gotTermination(int reason, long lastReceived)
- Parameters:
lastReceived
- in theory could wrap around to negative, but very unlikely
-
gotNextKey
void gotNextKey(NextSessionKey nextKey)
- Parameters:
nextKey
- the next one
-
gotPadding
void gotPadding(int paddingLength, int frameLength)
For stats.- Parameters:
paddingLength
- the number of padding bytes, not including the 3-byte block headerframeLength
- the total size of the frame, including all blocks and block headers
-
gotUnknown
void gotUnknown(int type, int len)
-
-