Package net.i2p.router.crypto.ratchet
Class MuxedSKM
- java.lang.Object
-
- net.i2p.crypto.SessionKeyManager
-
- net.i2p.router.crypto.ratchet.MuxedSKM
-
public class MuxedSKM extends SessionKeyManager
Both.- Since:
- 0.9.44
-
-
Constructor Summary
Constructors Constructor Description MuxedSKM(TransientSessionKeyManager elg, RatchetSKM ec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RatchetEntryconsumeNextAvailableTag(PublicKey target)EC onlySessionTagconsumeNextAvailableTag(PublicKey target, SessionKey key)ElG onlySessionKeyconsumeTag(SessionTag tag)Determine if we have received a session key associated with the given session tag, and if so, discard it (but keep track for frequent dups) and return the decryption key it was received with (via tagsReceived(...)).SessionKeycreateSession(PublicKey target)ElG onlyvoidcreateSession(PublicKey target, SessionKey key)ElG onlyvoidfailTags(PublicKey target, SessionKey key, TagSetHandle ts)ElG onlyintgetAvailableTags(PublicKey target, SessionKey key)Determine (approximately) how many available session tags for the current target have been confirmed and are availablelonggetAvailableTimeLeft(PublicKey target, SessionKey key)Determine how long the available tags will be available for before expiring, in millisecondsSessionKeygetCurrentKey(PublicKey target)ElG onlySessionKeygetCurrentOrNewKey(PublicKey target)ElG onlyRatchetSKMgetECSKM()TransientSessionKeyManagergetElgSKM()intgetLowThreshold()intgetTagsToSend()How many to send, IF we need to.(package private) booleanpreferRatchet()Should we try the Ratchet slow decrypt before ElG slow decrypt? Adaptive test based on previous mix of traffic for this SKM, as reported by reportDecryptResult().voidrenderStatusHTML(Writer out)(package private) voidreportDecryptResult(boolean isRatchet, boolean success)Report the result of a slow decrypt attempt.booleanshouldSendTags(PublicKey target, SessionKey key)ElG onlybooleanshouldSendTags(PublicKey target, SessionKey key, int lowThreshold)ElG onlyvoidshutdown()Called when the system is closing down, instructing the session key manager to take whatever precautions are necessary (saving state, etc)voidtagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)ElG onlyTagSetHandletagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)ElG onlyvoidtagsReceived(SessionKey key, Set<SessionTag> sessionTags)ElG onlyvoidtagsReceived(SessionKey key, Set<SessionTag> sessionTags, long expire)ElG onlyvoidtagsReceived(SessionKey key, RatchetSessionTag tag, long expire)EC only One time session-
Methods inherited from class net.i2p.crypto.SessionKeyManager
failTags
-
-
-
-
Constructor Detail
-
MuxedSKM
public MuxedSKM(TransientSessionKeyManager elg, RatchetSKM ec)
-
-
Method Detail
-
getElgSKM
public TransientSessionKeyManager getElgSKM()
-
getECSKM
public RatchetSKM getECSKM()
-
preferRatchet
boolean preferRatchet()
Should we try the Ratchet slow decrypt before ElG slow decrypt? Adaptive test based on previous mix of traffic for this SKM, as reported by reportDecryptResult().- Since:
- 0.9.46
-
reportDecryptResult
void reportDecryptResult(boolean isRatchet, boolean success)Report the result of a slow decrypt attempt.- Parameters:
isRatchet- true for EC, false for ElGsuccess- true for successful decrypt- Since:
- 0.9.46
-
getCurrentKey
public SessionKey getCurrentKey(PublicKey target)
ElG only- Overrides:
getCurrentKeyin classSessionKeyManager
-
getCurrentOrNewKey
public SessionKey getCurrentOrNewKey(PublicKey target)
ElG only- Overrides:
getCurrentOrNewKeyin classSessionKeyManager- Returns:
- non-null
-
createSession
public void createSession(PublicKey target, SessionKey key)
ElG only- Overrides:
createSessionin classSessionKeyManager
-
createSession
public SessionKey createSession(PublicKey target)
ElG only- Overrides:
createSessionin classSessionKeyManager
-
consumeNextAvailableTag
public SessionTag consumeNextAvailableTag(PublicKey target, SessionKey key)
ElG only- Overrides:
consumeNextAvailableTagin classSessionKeyManager
-
consumeNextAvailableTag
public RatchetEntry consumeNextAvailableTag(PublicKey target)
EC only
-
getTagsToSend
public int getTagsToSend()
Description copied from class:SessionKeyManagerHow many to send, IF we need to.- Overrides:
getTagsToSendin classSessionKeyManager
-
getLowThreshold
public int getLowThreshold()
- Overrides:
getLowThresholdin classSessionKeyManager
-
shouldSendTags
public boolean shouldSendTags(PublicKey target, SessionKey key)
ElG only- Overrides:
shouldSendTagsin classSessionKeyManager- Returns:
- true if we have less than the threshold or what we have is about to expire
-
shouldSendTags
public boolean shouldSendTags(PublicKey target, SessionKey key, int lowThreshold)
ElG only- Overrides:
shouldSendTagsin classSessionKeyManager- Returns:
- true if we have less than the threshold or what we have is about to expire
-
getAvailableTags
public int getAvailableTags(PublicKey target, SessionKey key)
Description copied from class:SessionKeyManagerDetermine (approximately) how many available session tags for the current target have been confirmed and are available- Overrides:
getAvailableTagsin classSessionKeyManager
-
getAvailableTimeLeft
public long getAvailableTimeLeft(PublicKey target, SessionKey key)
Description copied from class:SessionKeyManagerDetermine how long the available tags will be available for before expiring, in milliseconds- Overrides:
getAvailableTimeLeftin classSessionKeyManager
-
tagsDelivered
public TagSetHandle tagsDelivered(PublicKey target, SessionKey key, Set<SessionTag> sessionTags)
ElG only- Overrides:
tagsDeliveredin classSessionKeyManager
-
tagsReceived
public void tagsReceived(SessionKey key, Set<SessionTag> sessionTags)
ElG only- Overrides:
tagsReceivedin classSessionKeyManager
-
tagsReceived
public void tagsReceived(SessionKey key, Set<SessionTag> sessionTags, long expire)
ElG only- Overrides:
tagsReceivedin classSessionKeyManagersessionTags- modifiable; NOT copiedexpire- time from now
-
tagsReceived
public void tagsReceived(SessionKey key, RatchetSessionTag tag, long expire)
EC only One time session- Parameters:
expire- time from now- Since:
- 0.9.51
-
consumeTag
public SessionKey consumeTag(SessionTag tag)
Description copied from class:SessionKeyManagerDetermine if we have received a session key associated with the given session tag, and if so, discard it (but keep track for frequent dups) and return the decryption key it was received with (via tagsReceived(...)). returns null if no session key matches- Overrides:
consumeTagin classSessionKeyManager
-
shutdown
public void shutdown()
Description copied from class:SessionKeyManagerCalled when the system is closing down, instructing the session key manager to take whatever precautions are necessary (saving state, etc)- Overrides:
shutdownin classSessionKeyManager
-
renderStatusHTML
public void renderStatusHTML(Writer out) throws IOException
- Overrides:
renderStatusHTMLin classSessionKeyManager- Throws:
IOException
-
failTags
public void failTags(PublicKey target, SessionKey key, TagSetHandle ts)
ElG only- Overrides:
failTagsin classSessionKeyManager
-
tagsAcked
public void tagsAcked(PublicKey target, SessionKey key, TagSetHandle ts)
ElG only- Overrides:
tagsAckedin classSessionKeyManager
-
-